summaryrefslogtreecommitdiff
path: root/pkg/git/fetch.sh
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2020-04-15 18:52:57 -0700
committerMichael Forney <mforney@mforney.org>2020-04-15 19:09:56 -0700
commitea72d6bab9e53b63d0ad391fbb6019adf6c8a9e2 (patch)
tree0eae1e954a5bd849d183341208012d7910a5777e /pkg/git/fetch.sh
parentb275ed3c0711327bff6c1e67dbeaac8c5452a0e4 (diff)
Use main compression tool instead of *cat variants
Diffstat (limited to 'pkg/git/fetch.sh')
-rw-r--r--pkg/git/fetch.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/git/fetch.sh b/pkg/git/fetch.sh
index 7e257f44..13d21c80 100644
--- a/pkg/git/fetch.sh
+++ b/pkg/git/fetch.sh
@@ -18,4 +18,4 @@ if ! $SHA256SUM -c sha256 2>/dev/null ; then
fi
read -r checksum archive <sha256
-xzcat "$archive" | $PAXREAD -s ',^\.,src/man,'
+xz -d -c "$archive" | $PAXREAD -s ',^\.,src/man,'