cobra oopsie

This commit is contained in:
Michael Quigley 2022-10-04 13:16:58 -04:00
parent 9e4a5f47d9
commit 35c9733668
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

View File

@ -41,7 +41,7 @@ func newRun() *run {
cmd.Run = r.run
cmd.Flags().IntVarP(&r.loopers, "loopers", "l", 1, "Number of current loopers to start")
cmd.Flags().IntVarP(&r.iterations, "iterations", "i", 1, "Number of iterations per looper")
cmd.Flags().IntVarP(&r.statusEvery, "status-every", "e", 100, "Show status every # iterations")
cmd.Flags().IntVarP(&r.statusEvery, "status-every", "E", 100, "Show status every # iterations")
return r
}