From c469d2ec51141eb9ce3821276d51af3896c1e19d Mon Sep 17 00:00:00 2001 From: Mathias-Boulay Date: Sat, 15 Jun 2024 18:12:43 +0200 Subject: [PATCH] fix(build ios): fix syntax error --- 6_buildjdk.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/6_buildjdk.sh b/6_buildjdk.sh index 05bd509..fab13dd 100755 --- a/6_buildjdk.sh +++ b/6_buildjdk.sh @@ -82,7 +82,7 @@ git reset --hard if [[ "$BUILD_IOS" != "1" ]]; then find ../patches/jre_${TARGET_VERSION}/android -name "*.diff" -print0 | xargs -0 -I {} sh -c 'echo "Applying {}" && git apply --reject --whitespace=fix {} || echo "git apply failed (Android patch set)"' else - find ../patches/jre_${TARGET_VERSION}/ios -name "*.diff" -print0 | xargs -0 -I {} sh -c 'echo "Applying {}" && git apply --reject --whitespace=fix {} && || echo "git apply failed (iOs patch set)"' + find ../patches/jre_${TARGET_VERSION}/ios -name "*.diff" -print0 | xargs -0 -I {} sh -c 'echo "Applying {}" && git apply --reject --whitespace=fix {} || echo "git apply failed (iOs patch set)"' # Hack: exclude building macOS stuff desktop_mac=src/java.desktop/macosx