This is an automated email from the ASF dual-hosted git repository.
kevinjqliu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-go.git
The following commit(s) were added to refs/heads/main by this push:
new f32665e0 fix: correct release_upload in release_rc script (#576)
f32665e0 is described below
commit f32665e0da5e4f547c27749d713870662a4a9a33
Author: Matt Topol <[email protected]>
AuthorDate: Wed Sep 24 12:05:35 2025 -0400
fix: correct release_upload in release_rc script (#576)
`release_rc.sh` needs to use `for fname in ./*` instead of `for fname in
"./*"` so that it gets the proper results.
---
dev/release/release_rc.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev/release/release_rc.sh b/dev/release/release_rc.sh
index 8a27ad6c..6d28b0cd 100755
--- a/dev/release/release_rc.sh
+++ b/dev/release/release_rc.sh
@@ -113,7 +113,7 @@ if [ "${RELEASE_UPLOAD}" -gt 0 ]; then
echo "Uploading to ASF dist/dev..."
# rename files to remove -rc${rc} suffix before uploading
pushd "${id}"
- for fname in "./*"; do
+ for fname in ./*; do
mv "${fname}" "${fname//-rc${rc}/}"
done
popd