From 229b0d02f8a72721b30baf3cb3c2b3896c0c1725 Mon Sep 17 00:00:00 2001 From: Nathan Leiby Date: Wed, 10 Jun 2020 19:53:07 -0700 Subject: [PATCH] Adding logging before updating permissions --- action/steps/build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/action/steps/build.sh b/action/steps/build.sh index a9afa93a..c7f50449 100644 --- a/action/steps/build.sh +++ b/action/steps/build.sh @@ -125,7 +125,9 @@ fi # Add permissions to make app runnable if [[ "$BUILD_TARGET" == "StandaloneOSX" ]]; then - chmod +x $BUILD_PATH_FULL/StandaloneOSX.app/Contents/MacOS/* + ADD_PERMISSIONS_PATH=$BUILD_PATH_FULL/StandaloneOSX.app/Contents/MacOS/* + echo "Making the following path executable: $ADD_PERMISSIONS_PATH" + chmod +x $ADD_PERMISSIONS_PATH fi #