1
0
mirror of https://github.com/spacebarchat/spacebarchat.git synced 2024-09-19 17:01:47 +02:00

bash update script

This commit is contained in:
Flam3rboy 2021-04-07 17:08:52 +02:00
parent ef04fffc6d
commit 6913600c5d

11
scripts/update/update.sh Executable file
View File

@ -0,0 +1,11 @@
echo Update all repositories ...
cd ../../../
for D in */; do
echo --------------
echo "$D";
cd $D
git pull
npm i
cd ..
done
echo Done