mirror of
https://github.com/spacebarchat/spacebarchat.git
synced 2026-03-31 18:25:47 +00:00
10 lines
123 B
Bash
10 lines
123 B
Bash
echo Update for Git...
|
|
cd ../../../
|
|
for D in */; do
|
|
echo --------------
|
|
echo "$D";
|
|
cd $D
|
|
git pull
|
|
cd ..
|
|
done
|
|
echo Done |