Browse Source

disable progressbar in non-terminal

Victor Vieux 11 years ago
parent
commit
f28445254f
1 changed files with 2 additions and 0 deletions
  1. 2 0
      utils/jsonmessage.go

+ 2 - 0
utils/jsonmessage.go

@@ -89,6 +89,8 @@ func (jm *JSONMessage) Display(out io.Writer, isTerminal bool) error {
 		// <ESC>[2K = erase entire current line
 		fmt.Fprintf(out, "%c[2K\r", 27)
 		endl = "\r"
+	} else if jm.Progress != nil { //disable progressbar in non-terminal
+		return nil
 	}
 	if jm.Time != 0 {
 		fmt.Fprintf(out, "[%s] ", time.Unix(jm.Time, 0))