Skip to content

Commit

Permalink
fixed the readme flag
Browse files Browse the repository at this point in the history
  • Loading branch information
DnOberon committed Oct 15, 2019
1 parent 522544a commit 85e7a03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func init() {
rootCmd.Flags().IntP("repeat", "r", 1, "Designate how many times to repeat your program with supplied arguments")
rootCmd.Flags().DurationP("timeout", "t", 0, "Designate when to kill your provided program")

rootCmd.Flags().IntP("parallelCount", "p", 1, "Designate how many times to repeat your program with supplied arguments")
rootCmd.Flags().IntP("parallelCount", "p", 1, "Designate how many instances of your should run in parallel at one time")

rootCmd.Flags().BoolP("log", "l", false, "Toggle logging of provided program's stdout and stderr output to file, appends if file exists")
rootCmd.Flags().String("logName", "heimdall.log", "Specify the log file name, defaults to heimdall.log")
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Flags:
--logFilter string Allows for log filtering via regex string. Use only valid with log flag
--logName string Specify the log file name, defaults to heimdall.log (default "heimdall.log")
--logOverwrite Toggle logging of provided program's stdout and stderr output to file
-p, --parallelCount int Designate how many times to repeat your program with supplied arguments (default 1)
-p, --parallelCount int Designate how many instances of your should run in parallel at one time
-r, --repeat int Designate how many times to repeat your program with supplied arguments (default 1)
-t, --timeout duration Designate when to kill your provided program
-v, --verbose Toggle display of provided program's stdout and stderr output while heimdall runs
Expand Down

0 comments on commit 85e7a03

Please sign in to comment.