This is an automated email from the ASF dual-hosted git repository.
tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 27f4762c8 Remove dead code in verify_release_candidate (#2398)
27f4762c8 is described below
commit 27f4762c8794ef1c5d042933562185980eb85ae5
Author: Andrew Lamb <[email protected]>
AuthorDate: Wed Aug 10 12:08:40 2022 -0400
Remove dead code in verify_release_candidate (#2398)
---
dev/release/verify-release-candidate.sh | 18 ------------------
1 file changed, 18 deletions(-)
diff --git a/dev/release/verify-release-candidate.sh
b/dev/release/verify-release-candidate.sh
index a5ed04c6f..b60465b97 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -72,24 +72,6 @@ fetch_archive() {
${sha512_verify} ${dist_name}.tar.gz.sha512
}
-verify_dir_artifact_signatures() {
- # verify the signature and the checksums of each artifact
- find $1 -name '*.asc' | while read sigfile; do
- artifact=${sigfile/.asc/}
- gpg --verify $sigfile $artifact || exit 1
-
- # go into the directory because the checksum files contain only the
- # basename of the artifact
- pushd $(dirname $artifact)
- base_artifact=$(basename $artifact)
- if [ -f $base_artifact.sha256 ]; then
- ${sha256_verify} $base_artifact.sha256 || exit 1
- fi
- ${sha512_verify} $base_artifact.sha512 || exit 1
- popd
- done
-}
-
setup_tempdir() {
cleanup() {
if [ "${TEST_SUCCESS}" = "yes" ]; then