diff --git a/build_gesso.sh b/build_gesso.sh
index 5c69d6336311a424f952d2e69c29188d8a909bde..bfd642acc08f08b5ab29aea2424dee545fd215b4 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."