Compare commits

..

1 Commits

Author SHA1 Message Date
50e253e211 Fix config path for lassoctl 2021-11-11 16:31:50 -08:00

View File

@ -57,7 +57,8 @@ func initConfig() {
// Use config file from the flag. // Use config file from the flag.
viper.SetConfigFile(cfgFile) viper.SetConfigFile(cfgFile)
} else { } else {
viper.SetConfigType("/etc") viper.AddConfigPath("/etc")
viper.SetConfigType("toml")
viper.SetConfigName("lassoctl") viper.SetConfigName("lassoctl")
} }