From e06a40d9a14da8e41fd77abf76a65ec674361cb7 Mon Sep 17 00:00:00 2001 From: FriwiDev Date: Wed, 24 Nov 2021 00:08:43 +0100 Subject: [PATCH] Disable error handling in distribution building on linux --- scripts/run_linux.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/run_linux.sh b/scripts/run_linux.sh index 4d6d671..0b4fd6f 100644 --- a/scripts/run_linux.sh +++ b/scripts/run_linux.sh @@ -53,12 +53,15 @@ else cp -r /prebuild/linux32 /jcef/out fi +#Entering distribution phase - disable error handling (javadoc building fails here nontheless) +set -e + #Generate distribution chmod +x make_distrib.sh if [ ${TARGETARCH} == 'amd64' ] || [ ${TARGETARCH} == 'arm64' ]; then - bash -e make_distrib.sh linux64 + make_distrib.sh linux64 else - bash -e make_distrib.sh linux32 + make_distrib.sh linux32 fi #Pack binary_distrib