diff options
| author | AtlasLinden <114031241+AtlasLinden@users.noreply.github.com> | 2025-07-09 14:26:09 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-09 14:26:09 -0700 |
| commit | 9533232ce740bdeaf179a806cddd4825f44b2c45 (patch) | |
| tree | 740b1ec885239f53afc3222acc27a4d1c7807978 | |
| parent | 7b4cdd3040e1ebcd37c298fd97ef03ea41c65c1b (diff) | |
Mount dmg to new /Volumes
Currently hitting another permission error while attempting to mount dmg in tmp
| -rw-r--r-- | .github/workflows/qatest.yaml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/qatest.yaml b/.github/workflows/qatest.yaml index 9b5e0173f9..707288abb8 100644 --- a/.github/workflows/qatest.yaml +++ b/.github/workflows/qatest.yaml @@ -493,11 +493,11 @@ jobs: run: | # Mac installation echo "Mounting DMG installer..." - MOUNT_POINT="/tmp/secondlife-dmg" + MOUNT_POINT="/Volumes/SecondLifeMount" mkdir -p "$MOUNT_POINT" # Mount the DMG - hdiutil attach "${{ env.INSTALLER_PATH }}" -mountpoint "$MOUNT_POINT" -nobrowse + hdiutil attach "$INSTALLER_PATH" -mountpoint "$MOUNT_POINT" -nobrowse echo "✅ DMG mounted at $MOUNT_POINT" @@ -511,14 +511,14 @@ jobs: echo "Installing application to Applications folder..." - # 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" + # Copy the app to the Applications folder (or specified install path) + cp -R "$APP_PATH" "${{ matrix.install-path }}" + # Verify the app was copied successfully - if [ ! -d "${{ matrix.install-path }}/$(basename "$APP_PATH")" ]; then + if [ ! -d "${{ matrix.install-path }}/$(basename \"$APP_PATH\")" ]; then echo "❌ Error: Failed to install application to ${{ matrix.install-path }}!" exit 1 fi @@ -527,7 +527,7 @@ jobs: # Save mount point for cleanup echo "MOUNT_POINT=$MOUNT_POINT" >> $GITHUB_ENV - + - name: Wait for Installation to Complete (Mac) if: matrix.os == 'mac' shell: bash |
