added checkout-master script

This commit is contained in:
Julian Hinxlage 2020-01-07 15:32:44 +01:00
parent 7693394c33
commit d9207774ae

16
checkout-master.sh Executable file
View File

@ -0,0 +1,16 @@
#!/usr/bin/env bash
cd ..
for d in */; do
cd "$d"
FILE=build
if [ -d $FILE ]; then
git checkout master
fi
cd ..
done
cd installation
./update.sh