diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-06-25 11:33:27 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-06-25 15:12:05 +0200 |
commit | 7916201c4da9a29abc0ac1ef3ee80c8e3efdcf72 (patch) | |
tree | 79072f02d473626aead7749bd7167006a071f6c7 /guix/scripts/deploy.scm | |
parent | 1b4931555b3e876a313ce31273984f3a59b2ec78 (diff) |
reconfigure: Use 'formatted-message'.
* guix/scripts/system/reconfigure.scm (ensure-forward-reconfigure): Use
'formatted-message'.
* guix/scripts/deploy.scm (deploy-machine*): Handle it.
Diffstat (limited to 'guix/scripts/deploy.scm')
-rw-r--r-- | guix/scripts/deploy.scm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/guix/scripts/deploy.scm b/guix/scripts/deploy.scm index 8bb8a7932e..1707622c4f 100644 --- a/guix/scripts/deploy.scm +++ b/guix/scripts/deploy.scm @@ -28,6 +28,8 @@ #:use-module (guix utils) #:use-module (guix grafts) #:use-module (guix status) + #:use-module (guix diagnostics) + #:use-module (guix i18n) #:use-module (ice-9 format) #:use-module (srfi srfi-1) #:use-module (srfi srfi-26) @@ -132,6 +134,13 @@ Perform the deployment specified by FILE.\n")) (leave (G_ "failed to deploy ~a: ~a~%") (machine-display-name machine) (condition-message c))) + ((formatted-message? c) + (leave (G_ "failed to deploy ~a: ~a~%") + (machine-display-name machine) + (apply format #f + (gettext (formatted-message-string c) + %gettext-domain) + (formatted-message-arguments c)))) ((deploy-error? c) (when (deploy-error-should-roll-back c) (info (G_ "rolling back ~a...~%") |