Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix windows build #210

Merged
merged 1 commit into from
Jul 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions v3/pool_win.go
Original file line number Diff line number Diff line change
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