diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-05-18 21:19:49 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-05-18 21:35:35 +0200 |
commit | ffa5e0a6d2851832b7f0e6f943bc69e69e1bc8b0 (patch) | |
tree | a07e8007349155a1d52051871fc1deed18511f02 /guix/scripts | |
parent | acf82a1152431fddfee6828ff976157375eb143d (diff) | |
download | gnu-guix-ffa5e0a6d2851832b7f0e6f943bc69e69e1bc8b0.tar gnu-guix-ffa5e0a6d2851832b7f0e6f943bc69e69e1bc8b0.tar.gz |
publish: Fix narinfo rendering for already-compressed items.
Fixes <http://bugs.gnu.org/26975>.
Reported by Mark H Weaver <mhw@netris.org>.
* guix/scripts/publish.scm (bake-narinfo+nar): Pass #f as the 2nd
argument to 'stat' and properly handle #f.
* tests/publish.scm (wait-for-file): New procedure.
("with cache"): Remove 'wait-for-file' procedure.
("with cache, uncompressed"): New test.
Diffstat (limited to 'guix/scripts')
-rw-r--r-- | guix/scripts/publish.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/scripts/publish.scm b/guix/scripts/publish.scm index 8da75cb825..db7f6a957e 100644 --- a/guix/scripts/publish.scm +++ b/guix/scripts/publish.scm @@ -481,7 +481,8 @@ requested using POOL." (%private-key) #:nar-path nar-path #:compression compression - #:file-size (stat:size (stat nar))) + #:file-size (and=> (stat nar #f) + stat:size)) port)))))) ;; XXX: Declare the 'Guix-Compression' HTTP header, which is in fact for |