Use specified config file
This commit is contained in:
parent
dce600ad51
commit
fd756c5332
|
@ -68,7 +68,7 @@ type Config struct {
|
|||
|
||||
func NewConfig(cfgfile string) *Config {
|
||||
var cfg Config
|
||||
if _, err := toml.DecodeFile("matterbridge.toml", &cfg); err != nil {
|
||||
if _, err := toml.DecodeFile(cfgfile, &cfg); err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
return &cfg
|
||||
|
|
Loading…
Reference in New Issue