()
| 2049 | } |
| 2050 | |
| 2051 | func (v *Viper) getConfigFile() (string, error) { |
| 2052 | if v.configFile == "" { |
| 2053 | cf, err := v.findConfigFile() |
| 2054 | if err != nil { |
| 2055 | return "", err |
| 2056 | } |
| 2057 | v.configFile = cf |
| 2058 | } |
| 2059 | return v.configFile, nil |
| 2060 | } |
| 2061 | |
| 2062 | // Debug prints all configuration registries for debugging |
| 2063 | // purposes. |