Explorar o código

dont crash when redirecting stderr

Jeffrey Morgan hai 1 ano
pai
achega
e6ad4813d3
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      progress/bar.go

+ 1 - 1
progress/bar.go

@@ -37,7 +37,7 @@ func NewBar(message string, maxValue, initialValue int64) *Bar {
 func (b *Bar) String() string {
 	termWidth, _, err := term.GetSize(int(os.Stderr.Fd()))
 	if err != nil {
-		panic(err)
+		termWidth = 80
 	}
 
 	var pre, mid, suf strings.Builder