1
0
mirror of https://github.com/spacebarchat/spacebarchat.git synced 2024-11-14 14:42:30 +01:00
spacebarchat/scripts/update/update-git.sh
2021-05-01 18:27:48 +02:00

10 lines
108 B
Bash

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