diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-06-21 01:10:40 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-06-29 14:53:21 -0400 |
commit | 8108c266dc2fbc70602b2aa5c6887bf17bed16e8 (patch) | |
tree | 4982570264c757f5a649243c8f1a09baa593ca67 /tests | |
parent | 4f3bdc8f21657dbda857027b3ec8754dd4c7c67b (diff) | |
download | guix-8108c266dc2fbc70602b2aa5c6887bf17bed16e8.tar.gz |
tests: pack: Fix compressor extension.
* tests/pack.scm (%gzip-compressor): Add the missing leading period to the gzip compressor file extension.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/pack.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pack.scm b/tests/pack.scm index e8455b4f37..ae6247a1d5 100644 --- a/tests/pack.scm +++ b/tests/pack.scm @@ -51,7 +51,7 @@ (define %gzip-compressor ;; Compressor that uses the bootstrap 'gzip'. ((@ (guix scripts pack) compressor) "gzip" - "gz" + ".gz" #~(#+(file-append %bootstrap-coreutils&co "/bin/gzip") "-6n"))) (define %tar-bootstrap %bootstrap-coreutils&co) |