From b64ade5c245e7122c40c7788a7302ed8c3d969df Mon Sep 17 00:00:00 2001 From: crowetic Date: Fri, 4 Jul 2025 08:53:03 -0700 Subject: [PATCH] Fixed small typo in download from github link --- generate-release-notes.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generate-release-notes.sh b/generate-release-notes.sh index 3477c6b..c0f44f3 100755 --- a/generate-release-notes.sh +++ b/generate-release-notes.sh @@ -84,12 +84,12 @@ EOF chmod +x "$WORKING_QORTAL_DIR/$file" elif [ "${file}" = "start.sh" ]; then echo "Downloading from GitHub..." - curl -s "https://raw.githubusercontent.com/Qortal/qortal/refs/heads/$BRANCH/tools/$file" -o "$WORKING_QORTAL_DIR/$file" + curl -s "https://raw.githubusercontent.com/Qortal/qortal/refs/heads/$BRANCH/$file" -o "$WORKING_QORTAL_DIR/$file" echo "Making $file script executable..." chmod +x "$WORKING_QORTAL_DIR/$file" elif [ "${file}" = "stop.sh" ]; then echo "Downloading from GitHub..." - curl -s "https://raw.githubusercontent.com/Qortal/qortal/refs/heads/$BRANCH/tools/$file" -o "$WORKING_QORTAL_DIR/$file" + curl -s "https://raw.githubusercontent.com/Qortal/qortal/refs/heads/$BRANCH/$file" -o "$WORKING_QORTAL_DIR/$file" echo "Making $file script executable..." chmod +x "$WORKING_QORTAL_DIR/$file" else