Scripts/checkout-dev.sh

16 lines
173 B
Bash
Executable File

#!/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
./update.sh