Browse Source

remove update submodules script

make-stuff
Charles Reid 3 years ago
parent
commit
6c123a2ffe
  1. 17
      update_submodules.sh

17
update_submodules.sh

@ -1,17 +0,0 @@ @@ -1,17 +0,0 @@
#!/bin/bash
GREP="`which grep`"
for dir in `find . -type d -maxdepth 1 | $GREP -v "docs" | $GREP -v ".git"`; do
echo "--------------------"
echo $dir
(
cd $dir
git checkout master
git pull gh master
)
done
git commit -a -m 'Updating submodules to latest'
git push gh master
Loading…
Cancel
Save