Don't fail if config file isnot found

This commit is contained in:
Deluan 2020-07-03 09:39:28 -04:00
parent 99e269208e
commit ef9af6ed1a
2 changed files with 5 additions and 10 deletions

View file

@ -84,7 +84,7 @@ func init() {
viper.SetDefault("devautocreateadminpassword", "")
}
func InitConfig(cfgFile string) error {
func InitConfig(cfgFile string) {
if cfgFile != "" {
// Use config file from the flag.
viper.SetConfigFile(cfgFile)
@ -98,5 +98,5 @@ func InitConfig(cfgFile string) error {
viper.SetEnvPrefix("ND")
viper.AutomaticEnv()
return viper.ReadInConfig()
viper.ReadInConfig()
}