From ee030bbc431b6daf8cbda18a8eb686cba552b986 Mon Sep 17 00:00:00 2001 From: manuelblum Date: Mon, 18 Nov 2024 11:20:26 +0100 Subject: [PATCH] make install script more verbose (#526) --- install.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/install.sh b/install.sh index c0a0dc808..00d8d2268 100755 --- a/install.sh +++ b/install.sh @@ -14,6 +14,8 @@ fi # use correct npm and install dependencies nvm install nvm use + +echo -e "\033[34m\nInstalling dependencies for root package\033[0m" npm install @@ -49,9 +51,13 @@ sh ./site/intl-update.sh sh ./admin/intl-update.sh npm run create-site-configs-env +echo -e "\033[34m\nInstalling dependencies for admin\033[0m" npm --prefix admin install +echo -e "\033[34m\nInstalling dependencies for api\033[0m" npm --prefix api install +echo -e "\033[34m\nInstalling dependencies for site\033[0m" npm --prefix site install +echo -e "\033[34m\nInstalling dependencies for create-app\033[0m" npm --prefix create-app install mkdir -p ./api/uploads