diff options
author | Audric Schiltknecht <storm@chemicalstorm.org> | 2017-01-07 11:20:56 -0500 |
---|---|---|
committer | Audric Schiltknecht <storm@chemicalstorm.org> | 2017-01-07 11:20:56 -0500 |
commit | 7e98101a9be119cd2c3b20329660c26bb5919def (patch) | |
tree | 49752c8813351b634247b14d2f31856e9d2a8d06 /update-submodules.sh | |
parent | 004222ebc86aa2a5670e7d99719cc0277251fec9 (diff) | |
download | dotfiles-7e98101a9be119cd2c3b20329660c26bb5919def.tar.gz dotfiles-7e98101a9be119cd2c3b20329660c26bb5919def.tar.bz2 dotfiles-7e98101a9be119cd2c3b20329660c26bb5919def.zip |
Move vim/update-plugins to root as it deals with submodules
Script is not vim-specific, so move it to the root.
Diffstat (limited to 'update-submodules.sh')
-rwxr-xr-x | update-submodules.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/update-submodules.sh b/update-submodules.sh new file mode 100755 index 0000000..4fbb9d2 --- /dev/null +++ b/update-submodules.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +# updates all known submodules +cd `dirname $0` + +git submodule foreach git checkout master +git submodule foreach git pull |