diff --git a/progress/progress.go b/progress/progress.go index 6999fee..28d55fe 100644 --- a/progress/progress.go +++ b/progress/progress.go @@ -50,7 +50,7 @@ func (p *ProgressBar) render(final bool) { numBlank := 40 - numFilled donePercent := math.Round(float64(p.currentBytes) / float64(p.maxBytes) * 100) - if int(donePercent) == p.currentPercent { + if int(donePercent) == p.currentPercent && !final { return } p.currentPercent = int(donePercent)