This is an automated email from the ASF dual-hosted git repository.
zeroshade pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-go.git
The following commit(s) were added to refs/heads/main by this push:
new 53a6e7b4 release: fix syntax error in verify_rc.sh (#782)
53a6e7b4 is described below
commit 53a6e7b466d7703d4096a7d092fcb268e09cd104
Author: Bryce Mecum <[email protected]>
AuthorDate: Fri Apr 24 10:27:54 2026 -0700
release: fix syntax error in verify_rc.sh (#782)
The previous commit didn't fix the issue because \ needs to be the final
character, or at least it does on my system.
Ref: https://github.com/apache/arrow-go/pull/781#issuecomment-4314898385
---
dev/release/verify_rc.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev/release/verify_rc.sh b/dev/release/verify_rc.sh
index 7d6c9331..c67bbe9c 100755
--- a/dev/release/verify_rc.sh
+++ b/dev/release/verify_rc.sh
@@ -66,7 +66,7 @@ setup_tmpdir() {
download() {
curl \
--fail \
- --location \
+ --location \
--show-error \
--silent \
--output "$2" \