mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
shadow: End duplicate warnings with new lines.
The change from formatted message causes the line to no longer automatically be ended. This will need to be reverted once again, when duplicate names become hard errors. * gnu/system/shadow.scm (assert-unique-account-names) (assert-unique-group-names): End format strings in ~%.
This commit is contained in:
parent
eb11e1e180
commit
239af11a69
1 changed files with 2 additions and 2 deletions
|
@ -251,7 +251,7 @@ (define (assert-unique-account-names users)
|
|||
(() *unspecified*)
|
||||
(duplicates
|
||||
(warning
|
||||
(G_ "the following accounts appear more than once:~{ ~a~}")
|
||||
(G_ "the following accounts appear more than once:~{ ~a~}~%")
|
||||
duplicates))))
|
||||
|
||||
(define (assert-unique-group-names groups)
|
||||
|
@ -259,7 +259,7 @@ (define (assert-unique-group-names groups)
|
|||
(() *unspecified*)
|
||||
(duplicates
|
||||
(warning
|
||||
(G_ "the following groups appear more than once:~{ ~a~}")
|
||||
(G_ "the following groups appear more than once:~{ ~a~}~%")
|
||||
duplicates))))
|
||||
|
||||
(define (assert-valid-users/groups users groups)
|
||||
|
|
Loading…
Reference in a new issue