Skip to content

Commit 07bc31c

Browse files
committed
Fix syntax errors in post-05-update-gh-release-notes.sh
1 parent d990ce7 commit 07bc31c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dev/release/post-05-update-gh-release-notes.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
set -e
2121
set -o pipefail
2222

23-
if [ "$#" -ne 2 ]; then
23+
if [ "$#" -ne 1 ]; then
2424
echo "Usage: $0 <version>"
2525
exit 1
2626
fi
@@ -39,4 +39,4 @@ SOURCE_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
3939
# Update the Release Notes section
4040
RELEASE_NOTES_URL="https://arrow.apache.org/release/${VERSION}.html"
4141
RELEASE_NOTES="Release Notes URL: ${RELEASE_NOTES_URL}"
42-
gh release edit ${TAG} --repo ${REPOSITORY} --notes "{RELEASE_NOTES}" --verify-tag
42+
gh release edit ${TAG} --repo ${REPOSITORY} --notes "${RELEASE_NOTES}" --verify-tag

0 commit comments

Comments
 (0)