diff options
author | AtlasLinden <114031241+AtlasLinden@users.noreply.github.com> | 2025-07-10 08:42:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-10 08:42:34 -0700 |
commit | 2f77cd09a98c2fbc1e928bf04d400afdeaf55a13 (patch) | |
tree | 95714b8d972a6a796721971084aa675a742a07c2 | |
parent | 450d4d77f75801eba3576207e3e9df5f3e9cfdc1 (diff) |
Remove --no-xattrs option
-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 62b83f814f..db6268e200 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) - rsync -a --no-xattrs --inplace "$APP_PATH" "${{ matrix.install-path }}/" + rsync -a --inplace "$APP_PATH" "${{ matrix.install-path }}/" # Verify the app was copied successfully if [ ! -d "${{ matrix.install-path }}/$(basename \"$APP_PATH\")" ]; then |