This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-julia.git
The following commit(s) were added to refs/heads/main by this push:
new f88a62e Fix wrong release artifacts URL (#302)
f88a62e is described below
commit f88a62e0b6458ed6ea0439fc371f2e4ee0e039a7
Author: Sutou Kouhei <[email protected]>
AuthorDate: Tue Mar 8 09:07:18 2022 +0900
Fix wrong release artifacts URL (#302)
fix #301
We should not add "apache-" prefix in
https://dist.apache.org/repos/dist/release/arrow/ because other
releases don't have "apache-" prefix.
---
dev/release/release.sh | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/dev/release/release.sh b/dev/release/release.sh
index 4f54eb2..9de9ee6 100755
--- a/dev/release/release.sh
+++ b/dev/release/release.sh
@@ -28,13 +28,14 @@ fi
version=$1
rc=$2
-id="apache-arrow-julia-${version}"
+rc_id="apache-arrow-julia-${version}-rc${rc}"
+release_id="arrow-julia-${version}"
echo "Copying dev/ to release/"
svn \
cp \
-m "Apache Arrow Julia ${version}" \
- https://dist.apache.org/repos/dist/dev/arrow/${id}-rc${rc} \
- https://dist.apache.org/repos/dist/release/arrow/${id}
+ https://dist.apache.org/repos/dist/dev/arrow/${rc_id} \
+ https://dist.apache.org/repos/dist/release/arrow/${release_id}
echo "Success! The release is available here:"
-echo " https://dist.apache.org/repos/dist/release/arrow/${id}"
+echo " https://dist.apache.org/repos/dist/release/arrow/${release_id}"