Skip to content

Commit 072f419

Browse files
committed
Merge pull request spf13#412 from jacobwalker0814/installer_tweak
Installer: Define Git URI for Easier Forking
2 parents 97d9d4e + f0ce722 commit 072f419

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bootstrap.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/usr/bin/env bash
22
############################ SETUP PARAMETERS
33
app_name='spf13-vim'
4+
git_uri='https://github.com/spf13/spf13-vim.git'
45
git_branch='3.0'
56
debug_mode='0'
67
fork_maintainer='0'
@@ -81,7 +82,7 @@ clone_repo() {
8182
endpath="$HOME/.$app_name-3"
8283

8384
if [ ! -e "$endpath/.git" ]; then
84-
git clone --recursive -b "$git_branch" https://github.com/spf13/spf13-vim.git "$endpath"
85+
git clone --recursive -b "$git_branch" "$git_uri" "$endpath"
8586
ret="$?"
8687
success "$1"
8788
debug

0 commit comments

Comments
 (0)