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

10 lines
105 B
Bash

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