store the vundle uri in a variable.

I sometimes need to use other git transports (as opposed to https) and having these uris readable from the environment helps.
This commit is contained in:
Martin Atukunda 2014-01-31 10:37:49 +03:00
parent 529565bd74
commit 0bdeca5082

View File

@ -1,10 +1,11 @@
#!/usr/bin/env bash
############################ SETUP PARAMETERS
app_name='spf13-vim'
git_uri='https://github.com/spf13/spf13-vim.git'
[-z "$git_uri" ] && git_uri='https://github.com/spf13/spf13-vim.git'
git_branch='3.0'
debug_mode='0'
fork_maintainer='0'
[ -z "$VUNDLE_URI" ] && VUNDLE_URI="https://github.com/gmarik/vundle.git"
############################ BASIC SETUP TOOLS
msg() {
@ -93,7 +94,7 @@ clone_repo() {
clone_vundle() {
if [ ! -e "$HOME/.vim/bundle/vundle" ]; then
git clone https://github.com/gmarik/vundle.git "$HOME/.vim/bundle/vundle"
git clone $VUNDLE_URI "$HOME/.vim/bundle/vundle"
else
upgrade_repo "vundle" "Successfully updated vundle"
fi