Skip to content

Commit

Permalink
Reduce the number of dots printed in noninteractive download (#2992)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterebden authored Dec 8, 2023
1 parent f90c867 commit f7c053c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/progress.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func (pr *progressReader) update() {
if !pr.interactive {
// Can't do interactive things, just print dots.
if pr.current > pr.last {
Printf(strings.Repeat(".", (pr.current-pr.last)/10000))
Printf(strings.Repeat(".", (pr.current-pr.last)/100000))
}
return
}
Expand Down

0 comments on commit f7c053c

Please sign in to comment.