File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
# ########################### SETUP PARAMETERS
3
3
app_name=' spf13-vim'
4
- git_uri=' https://github.com/spf13/spf13-vim.git'
4
+ [ -z " $git_uri " ] && git_uri=' https://github.com/spf13/spf13-vim.git'
5
5
git_branch=' 3.0'
6
6
debug_mode=' 0'
7
7
fork_maintainer=' 0'
8
+ [ -z " $VUNDLE_URI " ] && VUNDLE_URI=" https://github.com/gmarik/vundle.git"
8
9
9
10
# ########################### BASIC SETUP TOOLS
10
11
msg () {
@@ -93,7 +94,7 @@ clone_repo() {
93
94
94
95
clone_vundle () {
95
96
if [ ! -e " $HOME /.vim/bundle/vundle" ]; then
96
- git clone https://github.com/gmarik/vundle.git " $HOME /.vim/bundle/vundle"
97
+ git clone $VUNDLE_URI " $HOME /.vim/bundle/vundle"
97
98
else
98
99
upgrade_repo " vundle" " Successfully updated vundle"
99
100
fi
You can’t perform that action at this time.
0 commit comments