From 627d1c761361b7265f47bcbf86672e382eaea9bb Mon Sep 17 00:00:00 2001 From: ebremner <ebremner@uwaterloo.ca> Date: Wed, 19 Feb 2020 15:13:09 +0000 Subject: [PATCH] ISTWCMS-3592: updating build gesso script to use build option --- build_gesso.sh | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/build_gesso.sh b/build_gesso.sh index 25b3c797..672d31a5 100755 --- a/build_gesso.sh +++ b/build_gesso.sh @@ -1,4 +1,4 @@ -uw_wcms_gesso_root_path=${1:-/var/www/html} +build_option=${1:-1} gesso_version="8.x-3.2" git clone "https://github.com/forumone/gesso" "gesso" cd gesso @@ -16,15 +16,17 @@ rm screenshot.png rm -rf templates echo "Done removing gess theme files." -echo "Running npm install ..." -npm install -echo "Done npm install." +if [ ${build_option} = 3 ] || [ ${build_option} = 4 ]; then + echo "Running npm install ..." + npm install + echo "Done npm install." -echo "Removing style lint config and replacing with UW config ..." -rm .stylelintrc.yml -cp ../.stylelintrc.yml . -echo "Done removing style lint config and replacing with UW config" + echo "Removing style lint config and replacing with UW config ..." + rm .stylelintrc.yml + cp ../.stylelintrc.yml . + echo "Done removing style lint config and replacing with UW config" -echo "Running gulp build ..." -gulp build -echo "Done running gulp build." + echo "Running gulp build ..." + gulp build + echo "Done running gulp build." +fi -- GitLab