mirror of
https://github.com/spacebarchat/spacebarchat.git
synced 2026-06-03 08:44:21 +00:00
11 lines
140 B
Bash
Executable File
11 lines
140 B
Bash
Executable File
echo Update all repositories ...
|
|
cd ../../../
|
|
for D in */; do
|
|
echo --------------
|
|
echo "$D";
|
|
cd $D
|
|
git pull
|
|
npm i
|
|
cd ..
|
|
done
|
|
echo Done |