From 0eda78bcc4cc34c2bd8fbef521e6ee2ced3ec898 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Tue, 20 Feb 2024 10:50:22 +0000 Subject: [PATCH] Fix typo in deploy script --- 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 0808e17..6eb4c95 100755 --- a/tools/branch-deploy.sh +++ b/tools/branch-deploy.sh @@ -22,7 +22,7 @@ INDEX_PAGE="${TARGET_FOLDER}/index.html" echo "

Deploying...

" > "${INDEX_PAGE}" # Create a block all robots.txt -echo -e "User-agent: *\nDisallow: /" > ${TARGET_FOLDER}/robots.txt" +echo -e "User-agent: *\nDisallow: /" > "${TARGET_FOLDER}/robots.txt" # Checkout a local bare copy, to speed up later checkouts ORIGIN=$(git config --get remote.origin.url)