guix-commits
[Top][All Lists]
Advanced

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

04/04: status: Do not systematically erase the previous line.


From: guix-commits
Subject: 04/04: status: Do not systematically erase the previous line.
Date: Thu, 7 Feb 2019 09:46:54 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 024d5275c5cd72c0121b4f70d64c63f859a68f17
Author: Ludovic Courtès <address@hidden>
Date:   Thu Feb 7 15:42:18 2019 +0100

    status: Do not systematically erase the previous line.
    
    After a successful download, we'd erase the download-progress line, and
    the end result would be two empty lines following the "downloading …"
    line.
    
    Reported by Ricardo Wurmus <address@hidden> at
    <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=33470#27>.
    
    * guix/status.scm (print-build-event)[erase-current-line*]: Set to a
    no-op when PRINT-LOG? is true.
    Move calls to 'erase-current-line*' to the 'build-succeeded' and
    'build-failed' events.
---
 guix/status.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/guix/status.scm b/guix/status.scm
index 984f329..cd5027e 100644
--- a/guix/status.scm
+++ b/guix/status.scm
@@ -498,14 +498,12 @@ addition to build events."
              (spin! #f port))))))
 
   (define erase-current-line*
-    (if (isatty?* port)
-        (lambda (port)
+    (if (and (not print-log?) (isatty?* port))
+        (lambda ()
           (erase-current-line port)
           (force-output port))
         (const #t)))
 
-  (unless print-log?
-    (erase-current-line* port))             ;clear the spinner or progress bar
   (match event
     (('build-started drv . _)
      (let ((properties (derivation-properties
@@ -530,6 +528,7 @@ addition to build events."
           (format port (info (G_ "building ~a...")) drv))))
      (newline port))
     (('build-succeeded drv . _)
+     (erase-current-line*)                      ;erase spinner or progress bar
      (when (or print-log? (not (extended-build-trace-supported?)))
        (format port (success (G_ "successfully built ~a")) drv)
        (newline port))
@@ -542,6 +541,7 @@ addition to build events."
                     (length ongoing))
                 (map build-derivation ongoing)))))
     (('build-failed drv . _)
+     (erase-current-line*)                      ;erase spinner or progress bar
      (format port (failure (G_ "build of ~a failed")) drv)
      (newline port)
      (match (derivation-log-file drv)



reply via email to

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