diff options
author | P. J. McDermott <pj@pehjota.net> | 2015-05-25 22:21:59 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2015-05-25 22:21:59 (EDT) |
commit | 401e1dc638408455f962a0b7f5f0bd18023739b9 (patch) | |
tree | c60d5559f1160e8160b3113d88b7ddbd67e12f27 /lib | |
parent | 65489cd1069b6e9cb592508103211984c43d3bbf (diff) |
feed_download(): s/gzip/gunzip/
Oops.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/feed.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/feed.sh b/lib/feed.sh index 2e4a141..8d29640 100644 --- a/lib/feed.sh +++ b/lib/feed.sh @@ -42,7 +42,7 @@ feed_download() local gzip= if ${use_gzip}; then - gzip=gzip + gzip=gunzip else gzip=cat fi |