Skip to content

Commit

Permalink
fix(dev/release): Fix BINARY_DIR prepare condition in the verify RC s…
Browse files Browse the repository at this point in the history
…cript (#670)

Fixes #669.
  • Loading branch information
kou authored May 10, 2023
1 parent 408f476 commit 6a032c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/release/verify-release-candidate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down

0 comments on commit 6a032c7

Please sign in to comment.