Skip to content

Commit

Permalink
fix order print
Browse files Browse the repository at this point in the history
  • Loading branch information
lesomnus committed Dec 2, 2024
1 parent a5fb20c commit d14571f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/hooks/print.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func (h *PrintHook) OnFinish() {
}

w := countDigits(h.T.Job.NumTasks)
n := color.New(color.FgWhite).Sprintf("%*d", w, h.T.Order)
n := color.New(color.FgWhite).Sprintf("%*d", w, h.T.Order+1)
N := fmt.Sprintf("%d", h.T.Job.NumTasks)

// [n/N|sym] path • dt
Expand Down

0 comments on commit d14571f

Please sign in to comment.