guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/05: status: Add missing newline after substitution completion message


From: guix-commits
Subject: 05/05: status: Add missing newline after substitution completion message.
Date: Sun, 4 Jul 2021 17:04:17 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit b1e48b5b4e5db3c7b4223a4138e360a654767c0e
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sun Jul 4 22:59:45 2021 +0200

    status: Add missing newline after substitution completion message.
    
    * guix/status.scm (print-build-event): Add newline after "substitution
    of ~a complete" message.
---
 guix/status.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/guix/status.scm b/guix/status.scm
index 1164c2a..f351a56 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]