diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-07-04 22:59:45 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-07-04 23:00:36 +0200 |
commit | b1e48b5b4e5db3c7b4223a4138e360a654767c0e (patch) | |
tree | 70eca8e81b679515e44b6256ff59d16cc8fe67d0 /guix | |
parent | 073f198e34d8004a4ac4dba558683514e5562994 (diff) |
status: Add missing newline after substitution completion message.
* guix/status.scm (print-build-event): Add newline after "substitution
of ~a complete" message.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/status.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/status.scm b/guix/status.scm index 1164c2a6e3..f351a56d92 100644 --- a/guix/status.scm +++ b/guix/status.scm @@ -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 |