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

11 lines
117 B
Bash
Raw Normal View History

2021-05-01 16:26:50 +02:00
echo Update for Git...
cd ../..
2021-05-01 16:26:50 +02:00
for D in */; do
echo --------------
echo "$D";
cd $D
npm i
cd ..
done
echo Done