civodul pushed a commit to branch master
in repository guix.
commit 129237272505d58e121c40b938c7227f294ecb82
Author: Ludovic Courtès <[email protected]>
AuthorDate: Fri Mar 20 14:52:01 2020 +0100
deploy: Write a message upon successful deployment.
* guix/scripts/deploy.scm (guix-deploy): Write message upon successful
deployment.
---
guix/scripts/deploy.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/guix/scripts/deploy.scm b/guix/scripts/deploy.scm
index d4d07be..f70d41f 100644
--- a/guix/scripts/deploy.scm
+++ b/guix/scripts/deploy.scm
@@ -143,5 +143,7 @@ Perform the deployment specified by FILE.\n"))
(machine-display-name machine))
(run-with-store store (roll-back-machine
machine)))
(apply throw (deploy-error-captured-args
c))))
- (run-with-store store (deploy-machine machine)))))
+ (run-with-store store (deploy-machine machine))
+ (info (G_ "successfully deployed ~a~%")
+ (machine-display-name machine)))))
machines))))))