From 8dcea9384d0373843718f39ab867694e13d8a844 Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Tue, 4 Jan 2022 17:48:53 -0300 Subject: [PATCH] fix(all): Migration to Linus. --- .deployment | 2 +- deploy.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.deployment b/.deployment index c051daca..433eef9a 100644 --- a/.deployment +++ b/.deployment @@ -1,2 +1,2 @@ [config] -command = deploy.sh \ No newline at end of file +command = bash ./deploy.sh \ No newline at end of file diff --git a/deploy.sh b/deploy.sh index ab1332bd..e3e5006a 100644 --- a/deploy.sh +++ b/deploy.sh @@ -72,7 +72,7 @@ echo Handling react app deployment. # 1. Install npm packages if [ -e "$DEPLOYMENT_SOURCE/package.json" ]; then cd "$DEPLOYMENT_SOURCE" - echo "[General Bots Deployer]Running npm install" + echo "[General Bots Deployer] Running npm install" eval npm install exitWithMessageOnError "npm failed" cd - > /dev/null @@ -81,10 +81,10 @@ fi # 1.1 Install default.gbui npm packages if [ -e "$DEPLOYMENT_SOURCE/packages/default.gbui/package.json" ]; then cd "$DEPLOYMENT_SOURCE/packages/default.gbui" - echo "[General Bots Deployer]Running npm install" + echo "[General Bots Deployer] Running npm install" eval npm install exitWithMessageOnError "npm failed" - echo "[General Bots Deployer]Building react app" + echo "[General Bots Deployer] Building react app" eval npm run build exitWithMessageOnError "react build failed" cd - > /dev/null