Skip to content

Commit 3ad3bf0

Browse files
author
Simon Rit
committed
ENH: Remove gtar warnings to reduce the log
Remove the (many) lines ``` Ignoring unknown extended header keyword 'LIBARCHIVE.xattr.com.apple.provenance' ```
1 parent 5ddcc68 commit 3ad3bf0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/macpython-download-cache-and-build-module-wheels.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ if [[ ! -f ITKPythonBuilds-macosx${tarball_arch}.tar.zst ]]; then
5555
fi
5656
unzstd --long=31 ITKPythonBuilds-macosx${tarball_arch}.tar.zst -o ITKPythonBuilds-macosx${tarball_arch}.tar
5757
PATH="$(dirname $(brew list gnu-tar | grep gnubin)):$PATH"
58-
gtar xf ITKPythonBuilds-macosx${tarball_arch}.tar --checkpoint=10000 --checkpoint-action=dot \
58+
gtar xf ITKPythonBuilds-macosx${tarball_arch}.tar --warning=no-unknown-keyword --checkpoint=10000 --checkpoint-action=dot \
5959
ITKPythonPackage/ITK-source \
6060
ITKPythonPackageRequiredExtractionDir.txt \
6161
ITKPythonPackage/scripts
@@ -64,7 +64,7 @@ gtar xf ITKPythonBuilds-macosx${tarball_arch}.tar --checkpoint=10000 --checkpoin
6464
args=( "$@" )
6565
source ITKPythonPackage/scripts/macpython-build-common.sh
6666
for version in "$PYTHON_VERSIONS"; do
67-
gtar xf ITKPythonBuilds-macosx${tarball_arch}.tar --checkpoint=10000 --checkpoint-action=dot \
67+
gtar xf ITKPythonBuilds-macosx${tarball_arch}.tar --warning=no-unknown-keyword --checkpoint=10000 --checkpoint-action=dot \
6868
--wildcards "ITKPythonPackage/ITK-${version}-macosx*" \
6969
"ITKPythonPackage/venvs/${version}"
7070
done

0 commit comments

Comments
 (0)