diff options
-rw-r--r-- | .github/workflows/qatest.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/qatest.yaml b/.github/workflows/qatest.yaml index b3dd267276..62b83f814f 100644 --- a/.github/workflows/qatest.yaml +++ b/.github/workflows/qatest.yaml @@ -512,7 +512,7 @@ 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 }}" + rsync -a --no-xattrs --inplace "$APP_PATH" "${{ matrix.install-path }}/" # Verify the app was copied successfully if [ ! -d "${{ matrix.install-path }}/$(basename \"$APP_PATH\")" ]; then |