This is an automated email from the ASF dual-hosted git repository.

lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/main by this push:
     new 6a032c7  fix(dev/release): Fix BINARY_DIR prepare condition in the 
verify RC script (#670)
6a032c7 is described below

commit 6a032c793e5f0b6ce79314899a856c26584d5f6b
Author: Sutou Kouhei <[email protected]>
AuthorDate: Wed May 10 21:11:09 2023 +0900

    fix(dev/release): Fix BINARY_DIR prepare condition in the verify RC script 
(#670)
    
    Fixes #669.
---
 dev/release/verify-release-candidate.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev/release/verify-release-candidate.sh 
b/dev/release/verify-release-candidate.sh
index 73e3c96..cda3993 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -653,7 +653,7 @@ test_source_distribution() {
 }
 
 test_binary_distribution() {
-  if [ ${TEST_BINARIES} -gt 0 ]; then
+  if [ $((${TEST_BINARY} + ${TEST_JARS} + ${TEST_WHEELS})) -gt 0 ]; then
     show_header "Downloading binary artifacts"
     export BINARY_DIR="${ARROW_TMPDIR}/binaries"
     mkdir -p "${BINARY_DIR}"

Reply via email to