Adjust permission before copying app

master
AtlasLinden 2025-07-09 14:14:40 -07:00 committed by GitHub
parent 8c6e766311
commit 7b4cdd3040
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -514,6 +514,9 @@ jobs:
# Copy the app to the Applications folder (or specified install path)
cp -R "$APP_PATH" "${{ matrix.install-path }}"
# Fix permissions before copying
chmod -R u+rw "$APP_PATH"
# Verify the app was copied successfully
if [ ! -d "${{ matrix.install-path }}/$(basename "$APP_PATH")" ]; then
echo "❌ Error: Failed to install application to ${{ matrix.install-path }}!"