This is an automated email from the ASF dual-hosted git repository. kszucs pushed a commit to branch maint-9.0.0 in repository https://gitbox.apache.org/repos/asf/arrow.git
commit 5839e594b53deedee6c05f654a0692a3efd622b4 Author: Jacob Wujciak-Jens <[email protected]> AuthorDate: Wed Jul 27 14:02:00 2022 +0200 ARROW-17211: [Java] Fix java-jar nightly on gh & self-hosted runners (#13712) Authored-by: Jacob Wujciak-Jens <[email protected]> Signed-off-by: Krisztián Szűcs <[email protected]> --- ci/scripts/java_full_build.sh | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/ci/scripts/java_full_build.sh b/ci/scripts/java_full_build.sh index 54800e7671..1c07971bcc 100755 --- a/ci/scripts/java_full_build.sh +++ b/ci/scripts/java_full_build.sh @@ -28,10 +28,13 @@ pushd ${arrow_dir}/java # Ensure that there is no old jar # inside the maven repository -find ~/.m2/repository/org/apache/arrow \ - "(" -name "*.jar" -o -name "*.zip" -o -name "*.pom" ")" \ - -exec echo {} ";" \ - -exec rm -rf {} ";" +maven_repo=~/.m2/repository/org/apache/arrow +if [ -d $maven_repo ]; then + find $maven_repo \ + "(" -name "*.jar" -o -name "*.zip" -o -name "*.pom" ")" \ + -exec echo {} ";" \ + -exec rm -rf {} ";" +fi # generate dummy GPG key for -Papache-release. # -Papache-release generates signs (*.asc) of artifacts.
