From a8cb04596727fa8432c3d09b669b6638552d0a3d Mon Sep 17 00:00:00 2001 From: Automatic Release Builder Date: Wed, 23 Sep 2020 18:06:52 +0100 Subject: [PATCH] macOS: mark crashpad handler as executable Without this, Sentry fails to initialise --- hudson_mac_build_release.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/hudson_mac_build_release.sh b/hudson_mac_build_release.sh index 6c91395..3d03609 100755 --- a/hudson_mac_build_release.sh +++ b/hudson_mac_build_release.sh @@ -62,8 +62,13 @@ fi popd -chmod +x $WORKSPACE/dist/bin/osgversion +crashpad_bin_path=$WORKSPACE/dist/fgfs.app/Contents/MacOS/crashpad_handler +if [ -f $crashpad_bin_path ]; then + chmod +x $crashpad_bin_path +fi + +chmod +x $WORKSPACE/dist/bin/osgversion echo "Running symbol upload script" ./sentry-dSYM-upload-mac.sh