summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2024-04-07 22:25:02 +0200
committerLudovic Courtès <ludo@gnu.org>2024-05-01 17:26:19 +0200
commit1a5041a502ee26c04d264983232b2aaa6a5e27d8 (patch)
tree3990a9232513944e676f2e662e8c2a168146e541
parent88573dd928a854139c63508c5454056e42482c90 (diff)
downloadguix-patches-1a5041a502ee26c04d264983232b2aaa6a5e27d8.tar
guix-patches-1a5041a502ee26c04d264983232b2aaa6a5e27d8.tar.gz
git authenticate: Print something upon success.
Until now the command would be silent and exit with 0. * guix/scripts/git/authenticate.scm (guix-git-authenticate): Print something upon success. Change-Id: I08d086c35df6ac74ee847df0479660293c68987d
-rw-r--r--guix/scripts/git/authenticate.scm5
1 files changed, 4 insertions, 1 deletions
diff --git a/guix/scripts/git/authenticate.scm b/guix/scripts/git/authenticate.scm
index d81a0e1ffb..0797cba0b6 100644
--- a/guix/scripts/git/authenticate.scm
+++ b/guix/scripts/git/authenticate.scm
@@ -274,4 +274,7 @@ expected COMMIT and SIGNER~%")))
#:keyring-reference keyring))
(when (and show-stats? (not (null? stats)))
- (show-stats stats))))))
+ (show-stats stats))
+
+ (info (G_ "successfully authenticated commit ~a~%")
+ (oid->string end))))))