Adding logging before updating permissions

pull/99/head
Nathan Leiby 2020-06-10 19:53:07 -07:00
parent e7a64dbfe4
commit 37b797c4ff
1 changed files with 3 additions and 1 deletions

View File

@ -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
#