status: Add missing newline after substitution completion message.
* guix/status.scm (print-build-event): Add newline after "substitution of ~a complete" message.master
parent
073f198e34
commit
b1e48b5b4e
|
@ -558,7 +558,8 @@ substitutes being downloaded."
|
|||
;; 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
|
||||
|
|
Reference in New Issue