Skip to content

Commit

Permalink
Merge pull request spf13#412 from jacobwalker0814/installer_tweak
Browse files Browse the repository at this point in the history
Installer: Define Git URI for Easier Forking
  • Loading branch information
spf13 committed Jul 31, 2013
2 parents 97d9d4e + f0ce722 commit 072f419
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bootstrap.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env bash
############################ SETUP PARAMETERS
app_name='spf13-vim'
git_uri='https://github.com/spf13/spf13-vim.git'
git_branch='3.0'
debug_mode='0'
fork_maintainer='0'
Expand Down Expand Up @@ -81,7 +82,7 @@ clone_repo() {
endpath="$HOME/.$app_name-3"

if [ ! -e "$endpath/.git" ]; then
git clone --recursive -b "$git_branch" https://github.com/spf13/spf13-vim.git "$endpath"
git clone --recursive -b "$git_branch" "$git_uri" "$endpath"
ret="$?"
success "$1"
debug
Expand Down

0 comments on commit 072f419

Please sign in to comment.