1
0
mirror of https://github.com/spacebarchat/spacebarchat.git synced 2024-11-08 19:52:36 +01:00
spacebarchat/scripts/update/update-git.sh
2021-05-01 19:13:28 +02:00

10 lines
108 B
Bash

echo Update files...
cd ../..
for D in */; do
echo --------------
echo "$D";
cd $D
git sync
cd ..
done