mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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.
This commit is contained in:
parent
54cf5e2a35
commit
388b432cea
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ Perform the deployment specified by FILE.\n"))
|
||||||
"Show the list of machines to deploy, MACHINES."
|
"Show the list of machines to deploy, MACHINES."
|
||||||
(let ((count (length machines)))
|
(let ((count (length machines)))
|
||||||
(format (current-error-port)
|
(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:~%"
|
"The following ~d machines will be deployed:~%"
|
||||||
count)
|
count)
|
||||||
count)
|
count)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue