Skip to content

Commit

Permalink
Replace TODOs in remove command help
Browse files Browse the repository at this point in the history
  • Loading branch information
petergtz authored and CI Bot committed Dec 6, 2018
1 parent 7d64b2d commit 6e3f5a0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pegomock/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ func Run(cliArgs []string, out io.Writer, in io.Reader, app *kingpin.Application

removeMocks = app.Command("remove", "Remove mocks generated by Pegomock")
removeRecursive = removeMocks.Flag("recursive", "Remove recursively in all sub-directories").Default("false").Short('r').Bool()
removeNonInteractive = removeMocks.Flag("non-interactive", "TODO").Default("false").Short('n').Bool()
removeDryRun = removeMocks.Flag("dry-run", "TODO").Default("false").Short('d').Bool()
removeSilent = removeMocks.Flag("silent", "TODO").Default("false").Short('s').Bool()
removePath = removeMocks.Arg("path", "TODO").Default("").String()
removeNonInteractive = removeMocks.Flag("non-interactive", "Don't ask for confirmation. Useful for scripts.").Default("false").Short('n').Bool()
removeDryRun = removeMocks.Flag("dry-run", "Just show what would be done. Don't delete anything.").Default("false").Short('d').Bool()
removeSilent = removeMocks.Flag("silent", "Don't write anything to standard out.").Default("false").Short('s').Bool()
removePath = removeMocks.Arg("path", "Use as root directory instead of current working directory.").Default("").String()
)

app.Writer(out)
Expand Down

0 comments on commit 6e3f5a0

Please sign in to comment.