diff options
author | Audric Schiltknecht <storm@chemicalstorm.org> | 2012-11-08 14:55:19 +0100 |
---|---|---|
committer | Audric Schiltknecht <storm@chemicalstorm.org> | 2012-11-08 14:55:19 +0100 |
commit | ce5c01d4b29a6323d761aca6659124a643577894 (patch) | |
tree | 58b4e5440ba35389b670c1f98e909c2e62a6372d /vim/add-plugin.sh | |
parent | 2c82d2890277a9392ed3be3f22d331fec45163e2 (diff) | |
download | dotfiles-ce5c01d4b29a6323d761aca6659124a643577894.tar.gz dotfiles-ce5c01d4b29a6323d761aca6659124a643577894.tar.bz2 dotfiles-ce5c01d4b29a6323d761aca6659124a643577894.zip |
Fix script to add vim bundle
Use git submodule update --rebase to prevent submodules to be in
detached state.
Diffstat (limited to 'vim/add-plugin.sh')
-rwxr-xr-x | vim/add-plugin.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/add-plugin.sh b/vim/add-plugin.sh index 05588d0..0d3ab86 100755 --- a/vim/add-plugin.sh +++ b/vim/add-plugin.sh @@ -11,4 +11,4 @@ fi cd $(dirname $0)/.. git submodule add $1 $(dirname $0)/vim/.vim/bundle/$2 git submodule init -git submodule update +git submodule update --rebase |