16 lines
176 B
Bash
16 lines
176 B
Bash
|
#!/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
|