Scripts/checkout-dev.sh

16 lines
173 B
Bash
Raw Normal View History

#!/usr/bin/env bash
cd ..
for d in */; do
cd "$d"
FILE=build
if [ -d $FILE ]; then
git checkout dev
fi
cd ..
done
cd installation
2019-10-29 15:12:04 +01:00
./update.sh