diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-10-05 09:28:32 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-10-07 10:47:43 +0200 |
commit | 3f717a09e768a016cdb25990c7fe34e22943217f (patch) | |
tree | 61d4524b625e748d94253710c5e43a62b6b24708 | |
parent | 6d02a994f911a75e3a223a22c05c2939cdfed2b5 (diff) | |
download | guix-3f717a09e768a016cdb25990c7fe34e22943217f.tar.gz guix-3f717a09e768a016cdb25990c7fe34e22943217f.zip |
guix system: Adjust bootloader message to plural "targets".
This is a followup to 2ca982ff41270288913ad6b7d5d9e1cad87b06d9.
* guix/scripts/system.scm (install): Adjust message to plural 'targets'.
-rw-r--r-- | guix/scripts/system.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm index 65eb98e4b2..3b1fe570b3 100644 --- a/guix/scripts/system.scm +++ b/guix/scripts/system.scm @@ -253,7 +253,7 @@ the ownership of '~a' may be incorrect!~%") (install-bootloader local-eval bootloader bootcfg #:target target) (return - (info (G_ "bootloader successfully installed on '~a'~%") + (info (G_ "bootloader successfully installed on~{ ~a~}~%") (bootloader-configuration-targets bootloader)))))))) |