From 03f71c79518fc57a147c9133a5a054ebd018c2de Mon Sep 17 00:00:00 2001 From: b1ek Date: Thu, 23 Feb 2023 16:55:19 +1000 Subject: [PATCH] install scripts dependencies in install script --- install | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/install b/install index 969319e..acc2801 100755 --- a/install +++ b/install @@ -4,8 +4,16 @@ PACKAGES="gulp-cli gulper gulp mocha sequelize-cli" if [[ $APP_DEBUG == 'true' ]]; then npm i + + cd scripts + npm i + cd .. else npm i --prod + + cd scripts + npm i --prod + cd .. fi echo -e "Installing \033[32m$PACKAGES\033[0m"