Skip to content

Commit

Permalink
gp --exclusion new flag
Browse files Browse the repository at this point in the history
  • Loading branch information
sarao1310 committed Jul 24, 2023
1 parent 95da88b commit f5506dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions utils/progressbar/filesprogressbar.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,9 @@ func (p *filesProgressBarManager) RemoveProgress(id int) {
p.bars[id-1].Abort()
}

// Increases general progress bar by n
func (p *filesProgressBarManager) IncrementGeneralProgress(n int) {
p.generalProgressBar.IncrBy(n)
// Increases general progress bar by 1
func (p *filesProgressBarManager) IncrementGeneralProgress() {
p.generalProgressBar.Increment()
}

// Quits the progress bar while aborting the initial bars.
Expand Down

0 comments on commit f5506dc

Please sign in to comment.