cmd: fmt: --write -> --overwrite to make it clear it's destructive

This commit is contained in:
Matthew Holt
2020-03-15 21:18:31 -06:00
parent 8f8ecd2e2a
commit c67c8e60cc
2 changed files with 6 additions and 8 deletions

View File

@ -244,8 +244,8 @@ provisioning stages.`,
RegisterCommand(Command{
Name: "fmt",
Func: cmdFormatConfig,
Usage: "[--write] [<path>]",
Func: cmdFmt,
Usage: "[--overwrite] [<path>]",
Short: "Formats a Caddyfile",
Long: `
Formats the Caddyfile by adding proper indentation and spaces to improve
@ -255,7 +255,7 @@ If --write is specified, the output will be written to the config file
directly instead of printing it.`,
Flags: func() *flag.FlagSet {
fs := flag.NewFlagSet("format", flag.ExitOnError)
fs.Bool("write", false, "Over-write the output to specified file")
fs.Bool("overwrite", false, "Overwrite the input file with the results")
return fs
}(),
})