Skip to content

Commit

Permalink
chore: remove unused verbose flag
Browse files Browse the repository at this point in the history
  • Loading branch information
majori committed Jun 13, 2024
1 parent eef44e2 commit cfb3a5e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions internal/cli/option/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import (

type Common struct {
Debug bool
Verbose bool
NoColors bool
NoInput bool
Colors
Expand All @@ -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")
}
Expand Down

0 comments on commit cfb3a5e

Please sign in to comment.