diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-06-17 00:30:16 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-06-17 00:30:16 +0200 |
commit | 2eea253f4ddefa12a476f22d52928227d971a7fa (patch) | |
tree | 4df3d086c373853eeef1c7b52a78c4eea4b63334 | |
parent | 26fd908fcf71c887c4c660f721cb9f71d5ece90d (diff) | |
download | patches-2eea253f4ddefa12a476f22d52928227d971a7fa.tar patches-2eea253f4ddefa12a476f22d52928227d971a7fa.tar.gz |
substitute-binary: Avoid the term "narinfo" in user messages.
* guix/scripts/substitute-binary.scm (assert-valid-narinfo): Change
message to avoid the term "narinfo".
-rwxr-xr-x | guix/scripts/substitute-binary.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/substitute-binary.scm b/guix/scripts/substitute-binary.scm index c70a4f626c..4bca8c2e88 100755 --- a/guix/scripts/substitute-binary.scm +++ b/guix/scripts/substitute-binary.scm @@ -335,7 +335,7 @@ or is signed by an unauthorized key." (if (not hash) (if %allow-unauthenticated-substitutes? narinfo - (leave (_ "narinfo for '~a' lacks a signature~%") + (leave (_ "substitute at '~a' lacks a signature~%") (uri->string (narinfo-uri narinfo)))) (let ((signature (narinfo-signature narinfo))) (unless %allow-unauthenticated-substitutes? |