From 76be93d22ae0e9b82948cd0a29e816456f03e911 Mon Sep 17 00:00:00 2001 From: Jared Contrascere Date: Mon, 20 May 2024 06:27:55 -0400 Subject: [PATCH] Fix the command so that it does not attempt to run a separate script --- cloudflare-template.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudflare-template.sh b/cloudflare-template.sh index 66b2562..761c25a 100755 --- a/cloudflare-template.sh +++ b/cloudflare-template.sh @@ -12,7 +12,7 @@ if [ ! -d "${API_KEY_DIR}" ]; then # Create a secrets.env file template. touch ${SECRETS_FILE} - echo -en "#/bin/bash\n\n# These are secrets used by the `cloudflare-ddns-updater` script.\n\n" > ${SECRETS_FILE} + echo -en "#/bin/bash\n\n# These are secrets used by the 'cloudflare-ddns-updater' script.\n\n" > ${SECRETS_FILE} echo "CLOUDFLARE_AUTH_EMAIL=\"\" # The email used to login 'https://dash.cloudflare.com'" >> ${SECRETS_FILE} echo "CLOUDFLARE_AUTH_METHOD=\"token\" # Set to "global" for Global API Key or "token" for Scoped API Token" >> ${SECRETS_FILE}