1
0
mirror of https://github.com/spacebarchat/spacebarchat.git synced 2024-11-14 22:52:28 +01:00
spacebarchat/scripts/update/update-git.sh

10 lines
108 B
Bash
Raw Normal View History

2021-05-01 17:15:44 +02:00
echo Update files...
2021-05-01 19:13:28 +02:00
cd ../..
2021-05-01 16:26:50 +02:00
for D in */; do
echo --------------
echo "$D";
cd $D
2021-05-01 18:27:48 +02:00
git sync
2021-05-01 16:26:50 +02:00
cd ..
done