summaryrefslogtreecommitdiff
path: root/pkg/git/fetch.sh
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2020-04-15 18:54:58 -0700
committerMichael Forney <mforney@mforney.org>2020-04-15 19:09:56 -0700
commite617f7bdf20027bbe90ec1a5220c7d1671a04782 (patch)
tree19e1e43359b4d10cdcc6690b2517cc5d95cd1106 /pkg/git/fetch.sh
parentea72d6bab9e53b63d0ad391fbb6019adf6c8a9e2 (diff)
Use gzipped archives when size difference is negligible
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 13d21c80..3ee5f3d8 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
-xz -d -c "$archive" | $PAXREAD -s ',^\.,src/man,'
+gzip -d -c "$archive" | $PAXREAD -s ',^\.,src/man,'