We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 97d9d4e + f0ce722 commit 072f419Copy full SHA for 072f419
bootstrap.sh
@@ -1,6 +1,7 @@
1
#!/usr/bin/env bash
2
############################ SETUP PARAMETERS
3
app_name='spf13-vim'
4
+git_uri='https://github.com/spf13/spf13-vim.git'
5
git_branch='3.0'
6
debug_mode='0'
7
fork_maintainer='0'
@@ -81,7 +82,7 @@ clone_repo() {
81
82
endpath="$HOME/.$app_name-3"
83
84
if [ ! -e "$endpath/.git" ]; then
- git clone --recursive -b "$git_branch" https://github.com/spf13/spf13-vim.git "$endpath"
85
+ git clone --recursive -b "$git_branch" "$git_uri" "$endpath"
86
ret="$?"
87
success "$1"
88
debug
0 commit comments