From f88a62e0b6458ed6ea0439fc371f2e4ee0e039a7 Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Tue, 8 Mar 2022 09:07:18 +0900 Subject: [PATCH] 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 4f54eb28..9de9ee62 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}"