From c68bdf8177ed6c117ca4a1d1c3d4e255d129afe1 Mon Sep 17 00:00:00 2001 From: Nathan Leiby Date: Wed, 10 Jun 2020 19:36:01 -0700 Subject: [PATCH] make StandaloneOSX app runnable --- action/steps/build.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/action/steps/build.sh b/action/steps/build.sh index 43e02669..a9afa93a 100644 --- a/action/steps/build.sh +++ b/action/steps/build.sh @@ -123,6 +123,11 @@ else echo "Build failed, with exit code $BUILD_EXIT_CODE"; fi +# Add permissions to make app runnable +if [[ "$BUILD_TARGET" == "StandaloneOSX" ]]; then + chmod +x $BUILD_PATH_FULL/StandaloneOSX.app/Contents/MacOS/* +fi + # # Results #