diff --git a/pegomock/main.go b/pegomock/main.go index 6d73127..c06f878 100644 --- a/pegomock/main.go +++ b/pegomock/main.go @@ -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)