diff --git a/internal/cli/option/common.go b/internal/cli/option/common.go index 4c75e04d..9346f216 100644 --- a/internal/cli/option/common.go +++ b/internal/cli/option/common.go @@ -8,7 +8,6 @@ import ( type Common struct { Debug bool - Verbose bool NoColors bool NoInput bool Colors @@ -21,7 +20,6 @@ type Colors struct { func (opts *Common) ApplyFlags(fs *pflag.FlagSet) { fs.BoolVar(&opts.Debug, "debug", false, "Debug mode") - fs.BoolVarP(&opts.Verbose, "verbose", "v", false, "Verbose output") fs.BoolVar(&opts.NoColors, "no-color", false, "If specified, output won't contain any color") fs.BoolVar(&opts.NoInput, "no-input", false, "If set to true, the program will exit with an error code if it needs to wait for any user input. This is useful when running the program in CI/CD environment") }