summaryrefslogtreecommitdiff
path: root/guix
diff options
context:
space:
mode:
authorMarius Bakke <mbakke@fastmail.com>2020-03-28 15:55:13 +0100
committerMarius Bakke <mbakke@fastmail.com>2020-03-28 15:55:13 +0100
commit388b432cea4ae2bb9bf4b044026b7764ab002e1e (patch)
tree7c05f2c87ff871841ff1ba34f2ba2047dff6aa67 /guix
parent54cf5e2a35dece248d6c427d69a79bce90d09a70 (diff)
downloadpatches-388b432cea4ae2bb9bf4b044026b7764ab002e1e.tar
patches-388b432cea4ae2bb9bf4b044026b7764ab002e1e.tar.gz
deploy: Remove use of '~*' in format string.
...since 'msgfmt' fails to interpret it. Reported by Vagrant Cascadian in <https://lists.gnu.org/archive/html/guix-devel/2020-03/msg00340.html>. See also <https://bugs.gnu.org/37505>. * guix/scripts/deploy.scm (show-what-to-deploy): Use ~d instead of ~* when displaying machines that will be deployed.
Diffstat (limited to 'guix')
-rw-r--r--guix/scripts/deploy.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/deploy.scm b/guix/scripts/deploy.scm
index f70d41f35c..5c871cd6ed 100644
--- a/guix/scripts/deploy.scm
+++ b/guix/scripts/deploy.scm
@@ -102,7 +102,7 @@ Perform the deployment specified by FILE.\n"))
"Show the list of machines to deploy, MACHINES."
(let ((count (length machines)))
(format (current-error-port)
- (N_ "The following ~*machine will be deployed:~%"
+ (N_ "The following ~d machine will be deployed:~%"
"The following ~d machines will be deployed:~%"
count)
count)