Skip to content

Commit 50ca7a7

Browse files
authored
apacheGH-40716: [Java][Integration] Fix test_package_java in verification scripts (apache#40724)
### Rationale for this change JPMS changed the location of JNI libs in the dist dir. ### What changes are included in this PR? * Update the dist path in the verification script ### Are these changes tested? CI ### Are there any user-facing changes? No * GitHub Issue: apache#40716 Authored-by: Dane Pitkin <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
1 parent 2931439 commit 50ca7a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dev/release/verify-release-candidate.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -642,8 +642,8 @@ test_package_java() {
642642
normalized_arch=x86_64
643643
;;
644644
esac
645-
mkdir -p ${dist_dir}/${normalized_arch}/
646-
mv ${install_dir}/lib/* ${dist_dir}/${normalized_arch}/
645+
mkdir -p ${dist_dir}
646+
mv ${install_dir}/lib/* ${dist_dir}
647647
mvn install \
648648
-Darrow.c.jni.dist.dir=${dist_dir} \
649649
-Parrow-c-data

0 commit comments

Comments
 (0)