Skip to content

Commit

Permalink
Fix wrong release artifacts URL (#302)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
kou authored Mar 8, 2022
1 parent 3afb6b2 commit f88a62e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions dev/release/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"

0 comments on commit f88a62e

Please sign in to comment.