Skip to content

Commit

Permalink
Merge pull request #210 from cheggaaa/fix-win-build
Browse files Browse the repository at this point in the history
fix windows build
  • Loading branch information
cheggaaa committed Jul 12, 2023
2 parents 0eed328 + e03c551 commit f7e7374
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions v3/pool_win.go
Expand Up @@ -6,6 +6,7 @@ package pb
import (
"fmt"
"log"
"strings"

"github.com/cheggaaa/pb/v3/termutil"
)
Expand All @@ -30,6 +31,10 @@ func (p *Pool) print(first bool) bool {
log.Panic(err)
}
}
cols, err := termutil.TerminalWidth()
if err != nil {
cols = defaultBarWidth
}
isFinished := true
for _, bar := range p.bars {
if !bar.IsFinished() {
Expand Down

0 comments on commit f7e7374

Please sign in to comment.