From 031dd4e0f167fcff03bc9a7ab45606000f536fd7 Mon Sep 17 00:00:00 2001 From: ebremner <ebremner@uwaterloo.ca> Date: Wed, 19 Feb 2020 15:24:59 -0500 Subject: [PATCH] ISTWCMS-3598: removing options --- build_gesso.sh | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/build_gesso.sh b/build_gesso.sh index 5c69d633..bfd642ac 100755 --- a/build_gesso.sh +++ b/build_gesso.sh @@ -17,17 +17,15 @@ rm screenshot.png rm -rf templates echo "Done removing gesso theme files." -if [ ${build_option} = 3 ] || [ ${build_option} = 4 ]; then - echo "Running npm install ..." - npm install - echo "Done npm install." +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." -fi +echo "Running gulp build ..." +gulp build +echo "Done running gulp build." -- GitLab