Skip to content

Commit efac1ee

Browse files
committed
fix(fetch.py): disable bsdtar(1) xattr preservation
To workaround the following: Extracting r-4.5.2.tar.gz... R-4.5.2/tests/Pkgs/pkgA: Cannot restore extended attributes on this file system.: Unknown error -1 bsdtar: Error exit delayed from previous errors.
1 parent a1a8e78 commit efac1ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

acbs/fetch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def tarball_processor_innner(package: ACBSPackageInfo, index: int, source_name:
130130
return
131131
# decompress
132132
logging.info(f'Extracting {facade_name}...')
133-
subprocess.check_call(['bsdtar', '-xf', facade_name],
133+
subprocess.check_call(['bsdtar', '--no-xattrs', '-xf', facade_name],
134134
cwd=package.build_location)
135135
return
136136

0 commit comments

Comments
 (0)