Skip to content

Commit

Permalink
fix(all): Migration to Linus.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorodriguez committed Jan 4, 2022
1 parent 905690e commit 8dcea93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .deployment
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[config]
command = deploy.sh
command = bash ./deploy.sh
6 changes: 3 additions & 3 deletions deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 8dcea93

Please sign in to comment.