aboutsummaryrefslogtreecommitdiff
path: root/tests/pack.scm
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2021-06-21 01:10:40 -0400
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2021-06-29 14:53:21 -0400
commit8108c266dc2fbc70602b2aa5c6887bf17bed16e8 (patch)
tree4982570264c757f5a649243c8f1a09baa593ca67 /tests/pack.scm
parent4f3bdc8f21657dbda857027b3ec8754dd4c7c67b (diff)
downloadguix-8108c266dc2fbc70602b2aa5c6887bf17bed16e8.tar
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/pack.scm')
-rw-r--r--tests/pack.scm2
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)