Scripts/update.sh

19 lines
236 B
Bash
Raw Permalink Normal View History

2019-10-23 13:28:52 +02:00
#!/usr/bin/env bash
echo 'updating all components'
cd ..
for d in */; do
cd "$d"
FILE=build
if [ -d $FILE ]; then
echo 'updating componenent ' $d
2019-10-23 13:28:52 +02:00
git pull
fi
cd ..
done
cd installation
2019-10-23 13:28:52 +02:00
./build.sh