commit: 91fc847d0c9794c9ecc3043e970a4cc552b05ea9
parent 16893a6aa1b5ae5a07504cd2af9c3ee9cc9661fd
Author: Michael Forney <mforney@mforney.org>
Date: Sun, 10 May 2020 13:44:30 -0700
Fix extraction with pax
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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