Browse Source

Return config parse errors (#182)

pull/1780/head
Christopher Goes 7 years ago
committed by Anton Kaliaev
parent
commit
6e26392209
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      cli/setup.go

+ 2
- 3
cli/setup.go View File

@ -139,9 +139,8 @@ func bindFlagsLoadViper(cmd *cobra.Command, args []string) error {
// stderr, so if we redirect output to json file, this doesn't appear
// fmt.Fprintln(os.Stderr, "Using config file:", viper.ConfigFileUsed())
} else if _, ok := err.(viper.ConfigFileNotFoundError); !ok {
// we ignore not found error, only parse error
// stderr, so if we redirect output to json file, this doesn't appear
fmt.Fprintf(os.Stderr, "%#v", err)
// ignore not found error, return other errors
return err
}
return nil
}


Loading…
Cancel
Save