From 43a22546cf929f23a5c594211ee6957dde091938 Mon Sep 17 00:00:00 2001 From: crueter Date: Sun, 29 Jun 2025 06:04:44 +0000 Subject: [PATCH] Update .ci/windows/build.sh Signed-off-by: crueter --- .ci/windows/build.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.ci/windows/build.sh b/.ci/windows/build.sh index 6cec119a03..dac13503dc 100644 --- a/.ci/windows/build.sh +++ b/.ci/windows/build.sh @@ -41,7 +41,9 @@ cmake .. -G Ninja \ ninja +set +e +find bin -type f -name "*.pdb" -exec rm -fv {} + \; || true +set -e + $WINDEPLOYQT --release --no-compiler-runtime --no-opengl-sw --no-system-dxc-compiler --no-system-d3d-compiler --dir pkg bin/eden.exe -set +e -find pkg -type f -name "*.pdb" -exec rm -fv {} + \; || true \ No newline at end of file