From 3056f1ac5aa323f087c8457dae4536017a8afe11 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Wed, 7 Feb 2024 11:52:20 +0000 Subject: [PATCH] Fix branch list --- tools/branch-deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/branch-deploy.sh b/tools/branch-deploy.sh index 2ccb73b..f8e187a 100755 --- a/tools/branch-deploy.sh +++ b/tools/branch-deploy.sh @@ -34,7 +34,7 @@ for BRANCH in $(git for-each-ref --format='%(refname:short)' refs/heads); do hugo --gc -b "${URL_BASE}/${BRANCH}" -s "${TEMP_FOLDER}" -d "${TARGET_FOLDER}/${BRANCH}" > /dev/null # Add to the index page - echo "
  • ${BRANCH}
  • " >> "${INDEX_PAGE}" + echo "
  • ${BRANCH}
  • " >> "${INDEX_PAGE}" # Cleanup the temp folder rm -rf "${TEMP_FOLDER}"