diff --git a/tools/branch-deploy.sh b/tools/branch-deploy.sh index 6eb4c95..1cce044 100755 --- a/tools/branch-deploy.sh +++ b/tools/branch-deploy.sh @@ -49,7 +49,7 @@ for BRANCH in $BRANCHES; do # Build to the destination folder for THEME in $THEMES; do hugo --quiet ${HUGO_ARGUMENTS} -b "${BASE_URL}/${BRANCH}/${THEME}" -s "${TEMP_FOLDER}" -d "${TARGET_FOLDER}/${BRANCH}/${THEME}" -t "${THEME}" - find "${TARGET_FOLDER}/${BRANCH}/${THEME}" -name "*.cgi" -exec chmod a+x {}\; + find "${TARGET_FOLDER}/${BRANCH}/${THEME}" -name "*.cgi" -exec chmod a+x {} \; done # Cleanup the temp folder diff --git a/tools/retro-deploy.sh b/tools/retro-deploy.sh index b764a6c..4dbd4ce 100755 --- a/tools/retro-deploy.sh +++ b/tools/retro-deploy.sh @@ -13,4 +13,4 @@ git pull hugo --quiet ${HUGO_ARGUMENTS} -b "${BASE_URL}" -d "${TARGET_FOLDER}" -t "lhs-retro" # Make sure the CGI scripts are executable -find "${TARGET_FOLDER}" -name "*.cgi" -exec chmod a+x {}\; \ No newline at end of file +find "${TARGET_FOLDER}" -name "*.cgi" -exec chmod a+x {} \; \ No newline at end of file