From 90725252d3ad9b7bdfba2f2a4173f111a99a85f8 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Mon, 17 Mar 2025 00:47:53 +0200 Subject: [PATCH] iOS: Fail on build error --- src/pandios/build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pandios/build.sh b/src/pandios/build.sh index 63d5b9f5..63c954c3 100755 --- a/src/pandios/build.sh +++ b/src/pandios/build.sh @@ -11,6 +11,9 @@ EMULATOR_BUILD_TYPE=Release # Simulator settings RUN_SIMULATOR=false +# Fail on error +set -e + # Go to the parent directory and build the emulator core cd ../.. cmake -B build -DENABLE_VULKAN=OFF -DBUILD_HYDRA_CORE=ON -DENABLE_USER_BUILD=ON -DCMAKE_TOOLCHAIN_FILE=third_party/ios_toolchain/ios.toolchain.cmake -DPLATFORM=SIMULATORARM64 -DDEPLOYMENT_TARGET="13.0"