docs: fix error handling for file-not-found

This commit is contained in:
Andrew Marcuse 2021-10-13 20:38:50 -04:00
parent 0594522560
commit ee3df7d279

View file

@ -127,7 +127,7 @@ You can handle the specific case where no config file is found like this:
```go
if err := viper.ReadInConfig(); err != nil {
if _, ok := err.(viper.ConfigFileNotFoundError); ok {
if errors.Is(err, os.ErrNotExist) {
// Config file not found; ignore error if desired
} else {
// Config file was found but another error was produced