Properly check that --quiet and --verbose are not combined

If --verbose is specified once, then globalOptions.Verbose == 1.
Previously --quiet --verbose would silently ignore the --verbose flag.
This commit is contained in:
Michael Eischer 2020-12-30 21:24:18 +01:00
parent b2efa0af39
commit 97388b3504
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ directories in an encrypted repository stored on different backends.
PersistentPreRunE: func(c *cobra.Command, args []string) error {
// set verbosity, default is one
globalOptions.verbosity = 1
if globalOptions.Quiet && (globalOptions.Verbose > 1) {
if globalOptions.Quiet && globalOptions.Verbose > 0 {
return errors.Fatal("--quiet and --verbose cannot be specified at the same time")
}