fix(build ios): fix syntax error

This commit is contained in:
Mathias-Boulay 2024-06-15 18:12:43 +02:00
parent 5b7f9a8a5c
commit c469d2ec51

View File

@ -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