From a6d3d15a17b09c472b82095a395ceddafc08e4a1 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Tue, 20 Feb 2024 11:01:33 +0000 Subject: [PATCH] Add missing spaces to find calls --- tools/branch-deploy.sh | 2 +- tools/retro-deploy.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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