From 91fc847d0c9794c9ecc3043e970a4cc552b05ea9 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Sun, 10 May 2020 13:44:30 -0700 Subject: Fix extraction with pax --- scripts/extract.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/extract.sh b/scripts/extract.sh index 1ffc23f8..4a1ad044 100644 --- a/scripts/extract.sh +++ b/scripts/extract.sh @@ -11,7 +11,7 @@ esac if command -v bsdtar >/dev/null; then exec bsdtar -xf "$file" "$@" elif command -v pax >/dev/null; then - "$tool" -d -c "$file" | pax "$@" + "$tool" -d -c "$file" | pax -r "$@" else printf '%s: bsdtar or pax is required' "$0" >&2 exit 1 -- cgit v1.2.3