mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
status: Add missing newline after substitution completion message.
* guix/status.scm (print-build-event): Add newline after "substitution of ~a complete" message.
This commit is contained in:
parent
073f198e34
commit
b1e48b5b4e
1 changed files with 2 additions and 1 deletions
|
@ -558,7 +558,8 @@ (define erase-current-line*
|
|||
;; If there are no jobs running, we already reported download completion
|
||||
;; so there's nothing left to do.
|
||||
(unless (zero? (simultaneous-jobs status))
|
||||
(format port (success (G_ "substitution of ~a complete")) item))
|
||||
(format port (success (G_ "substitution of ~a complete")) item)
|
||||
(newline port))
|
||||
|
||||
(when (and print-urls? (zero? (simultaneous-jobs status)))
|
||||
;; Leave a blank line after the "downloading ..." line and the
|
||||
|
|
Loading…
Reference in a new issue