mirror of
https://github.com/spf13/viper
synced 2024-11-04 20:27:02 +00:00
return more useful error if config file is missing
Signed-off-by: Joshua Rubin <jrubin@zvelo.com>
This commit is contained in:
parent
25817ada59
commit
73f4371418
1 changed files with 17 additions and 9 deletions
26
viper.go
26
viper.go
|
@ -197,16 +197,25 @@ func Set(key string, value interface{}) {
|
|||
override[key] = value
|
||||
}
|
||||
|
||||
func ReadInConfig() {
|
||||
type UnsupportedConfigError string
|
||||
|
||||
func (str UnsupportedConfigError) Error() string {
|
||||
return fmt.Sprintf("Unsupported Config Type %q", string(str))
|
||||
}
|
||||
|
||||
func ReadInConfig() error {
|
||||
jww.INFO.Println("Attempting to read in config file")
|
||||
if !stringInSlice(getConfigType(), SupportedExts) {
|
||||
jww.ERROR.Fatalf("Unsupported Config Type %q", getConfigType())
|
||||
return UnsupportedConfigError(getConfigType())
|
||||
}
|
||||
|
||||
file, err := ioutil.ReadFile(getConfigFile())
|
||||
if err == nil {
|
||||
MarshallReader(bytes.NewReader(file))
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
MarshallReader(bytes.NewReader(file))
|
||||
return nil
|
||||
}
|
||||
|
||||
func MarshallReader(in io.Reader) {
|
||||
|
@ -276,12 +285,11 @@ func getConfigFile() string {
|
|||
|
||||
cf, err := findConfigFile()
|
||||
if err != nil {
|
||||
jww.ERROR.Println(err)
|
||||
} else {
|
||||
configFile = cf
|
||||
return getConfigFile()
|
||||
return ""
|
||||
}
|
||||
return ""
|
||||
|
||||
configFile = cf
|
||||
return getConfigFile()
|
||||
}
|
||||
|
||||
func searchInPath(in string) (filename string) {
|
||||
|
|
Loading…
Reference in a new issue