Merge pull request #1571 from gportay/unpackfs-skip-overlay-extended-attributes

[unpackfs] Skip overlay extended attributes
main
Adriaan de Groot 4 years ago committed by GitHub
commit 478af25cec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -182,7 +182,7 @@ def file_copy(source, entry, progress_cb):
num_files_total_local = 0
num_files_copied = 0 # Gets updated through rsync output
args = ['rsync', '-aHAXr']
args = ['rsync', '-aHAXr', '--filter=-x trusted.overlay.*']
args.extend(global_excludes())
if entry.excludeFile:
args.extend(["--exclude-from=" + entry.excludeFile])

Loading…
Cancel
Save