Adding logging before updating permissions

This commit is contained in:
Nathan Leiby 2020-06-10 19:53:07 -07:00 committed by Webber Takken
parent c68bdf8177
commit 229b0d02f8

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
#