deploy: Remove use of '~*' in format string.
authorMarius Bakke <mbakke@fastmail.com>
Sat, 28 Mar 2020 14:55:13 +0000 (15:55 +0100)
committerMarius Bakke <mbakke@fastmail.com>
Sat, 28 Mar 2020 14:55:13 +0000 (15:55 +0100)
...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.

guix/scripts/deploy.scm

index f70d41f..5c871cd 100644 (file)
@@ -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 ~machine will be deployed:~%"
                 "The following ~d machines will be deployed:~%"
                 count)
             count)