diff options
| author | Peter Bex <peter@case-builders.com> | 2011-03-29 09:15:21 +0200 | 
|---|---|---|
| committer | Peter Bex <peter@case-builders.com> | 2011-03-29 09:15:21 +0200 | 
| commit | 4a7382b4132358840aaa75bd793f29796cfca0a5 (patch) | |
| tree | 9d796235dac850c4954a10d003ec008b3050ec2d | |
| parent | 44c834e807a664aa8001fd6de957ea3db3e0a0fb (diff) | |
| download | henrietta-cache-4a7382b4132358840aaa75bd793f29796cfca0a5.tar.gz | |
Use zcat instead of gzcat as that's apparently more 'portable'. Yay for GNU and its 'standards' :(0.1
| -rw-r--r-- | henrietta-cache.scm | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/henrietta-cache.scm b/henrietta-cache.scm index fb631ae..c391964 100644 --- a/henrietta-cache.scm +++ b/henrietta-cache.scm @@ -51,7 +51,7 @@ EOF    (case distribution-file-type      ((targz)       (pipe-from-http -      uri (sprintf "(cd ~A; gzcat | pax -r -s ',^[^/]*/*,,')" (qs cache-dir)))) +      uri (sprintf "(cd ~A; zcat | pax -r -s ',^[^/]*/*,,')" (qs cache-dir))))      ((tarbz2)       (pipe-from-http        uri (sprintf "(cd ~A; bzcat | pax -r -s ',^[^/]*/*,,')" (qs cache-dir)))) | 
