diff --git a/build_gesso.sh b/build_gesso.sh
old mode 100644
new mode 100755
index c619f8e9b97e965f7bfd404c46905a6d7082dd1c..b5d5730334c2bdb32bcd19a266b494e08e8f6f08
--- a/build_gesso.sh
+++ b/build_gesso.sh
@@ -1,24 +1,23 @@
-uw_wcms_gesso_root_path=${1:-/var/www/html}
-git clone "https://github.com/forumone/gesso" "$uw_wcms_gesso_root_path/uw_wcms_gesso/gesso"
-cd "$uw_wcms_gesso_root_path/uw_wcms_gesso/gesso"
-rm -rf "$uw_wcms_gesso_root_path/uw_wcms_gesso/gesso/source"
-ln -s "$uw_wcms_gesso_root_path/uw_wcms_gesso/source"
-# Adding symbolic link to source, as gesso_helper module hard-codes the twig_functions to add
-# to "Themepath/SORUCE/..."
-
-echo "Removing Gesso files"
-rm gesso.layouts.yml
-rm gesso.info.yml
-rm gesso.libraries.yml
-rm gesso.breakpoints.yml
-rm Dockerfile
-rm screenshot.png
-rm -rf templates
-echo "Done removing gess theme files."
-
-echo "Running npm install..."
-npm install
-echo "Done."
-
-echo "Running gulp build..."
-gulp build
+uw_wcms_gesso_root_path=${1:-/var/www/html}
+git clone "https://github.com/forumone/gesso" "gesso"
+cd gesso
+rm -rf "$uw_wcms_gesso_root_path/uw_wcms_gesso/gesso/source"
+ln -s "$uw_wcms_gesso_root_path/uw_wcms_gesso/source"
+
+echo "Removing Gesso files"
+rm gesso.layouts.yml
+rm gesso.info.yml
+rm gesso.libraries.yml
+rm gesso.breakpoints.yml
+rm Dockerfile
+rm screenshot.png
+rm -rf templates
+echo "Done removing gess theme files."
+
+echo "Running npm install ..."
+npm install
+echo "Done npm install."
+
+echo "Running gulp build ..."
+gulp build
+echo "Done running gulp build."
\ No newline at end of file