mirror of
https://github.com/spacebarchat/spacebarchat.git
synced 2024-11-08 19:52:36 +01:00
10 lines
108 B
Bash
10 lines
108 B
Bash
echo Update files...
|
|
cd ../..
|
|
for D in */; do
|
|
echo --------------
|
|
echo "$D";
|
|
cd $D
|
|
git sync
|
|
cd ..
|
|
done
|