From 6913600c5daa09bd041fb7a19aee9ac11906aaf9 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Wed, 7 Apr 2021 17:08:52 +0200 Subject: [PATCH] :sparkles: bash update script --- scripts/update/update.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 scripts/update/update.sh diff --git a/scripts/update/update.sh b/scripts/update/update.sh new file mode 100755 index 0000000..9f2f770 --- /dev/null +++ b/scripts/update/update.sh @@ -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 \ No newline at end of file