add exit on cli bind fails + copy update

This commit is contained in:
Alex Goodman 2020-05-22 15:25:49 -04:00
parent ae6feed8fc
commit 51c972ad33
No known key found for this signature in database
GPG key ID: 86E2870463D5E890
2 changed files with 8 additions and 2 deletions

View file

@ -2,6 +2,7 @@ package cmd
import (
"fmt"
"os"
"github.com/anchore/imgbom/imgbom/presenter"
"github.com/anchore/imgbom/imgbom/scope"
@ -21,6 +22,7 @@ func setCliOptions() {
fmt.Sprintf("selection of layers to analyze, options=%v", scope.Options))
if err := viper.BindPFlag(flag, rootCmd.Flags().Lookup(flag)); err != nil {
fmt.Printf("unable to bind flag '%s': %+v", flag, err)
os.Exit(1)
}
// output & formatting options
@ -31,15 +33,17 @@ func setCliOptions() {
)
if err := viper.BindPFlag(flag, rootCmd.Flags().Lookup(flag)); err != nil {
fmt.Printf("unable to bind flag '%s': %+v", flag, err)
os.Exit(1)
}
flag = "quiet"
rootCmd.Flags().BoolP(
flag, "q", false,
"suppress all auxiliary output",
"suppress all logging output",
)
if err := viper.BindPFlag(flag, rootCmd.Flags().Lookup(flag)); err != nil {
fmt.Printf("unable to bind flag '%s': %+v", flag, err)
os.Exit(1)
}
rootCmd.Flags().CountVarP(&cliOpts.Verbosity, "verbose", "v", "increase verbosity (-v = info, -vv = debug)")

View file

@ -85,7 +85,9 @@ func (cfg *Application) Build() error {
cfg.ScopeOpt = scopeOption
if cfg.Quiet {
// quiet option trumps all other logging options
// TODO: this is bad: quiet option trumps all other logging options
// we should be able to quiet the consol logging and leave file logging alone...
// ... this will be an enhancement for later
cfg.Log.LevelOpt = zapcore.PanicLevel
} else {
if cfg.Log.Level != "" {