diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-07-21 18:22:49 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-07-21 18:22:49 +0200 |
commit | b3679394ec5a703de957e4344d2e20b7e306cd39 (patch) | |
tree | 143a324ac7709bf3c4a20bad9e83fcbda6f6d589 /guix | |
parent | e5c00059560c6280aff3dac3c9c3a8b5477832ef (diff) |
git-authenticate: Show fingerprint in missing-key error message.
* guix/git-authenticate.scm (commit-signing-key): In the 'missing-key'
case, add call to 'openpgp-format-fingerprint'.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/git-authenticate.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/git-authenticate.scm b/guix/git-authenticate.scm index 99fd9c3594..6cfc7fabe1 100644 --- a/guix/git-authenticate.scm +++ b/guix/git-authenticate.scm @@ -146,7 +146,7 @@ for commit ~a") (message (format #f (G_ "could not authenticate \ commit ~a: key ~a is missing") (oid->string commit-id) - data)))))) + (openpgp-format-fingerprint data))))))) ('good-signature data))))))) (define (read-authorizations port) |