From 74d8522639953efce32edf913af30aabeeed212c Mon Sep 17 00:00:00 2001 From: Boris Zhao Date: Sun, 31 Mar 2019 00:06:51 +0800 Subject: [PATCH] Fix incorrect default name of the config file (#39) --- conf/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/config.go b/conf/config.go index 9a482db..7514861 100644 --- a/conf/config.go +++ b/conf/config.go @@ -67,7 +67,7 @@ func initConfig() error { log.Fatalln(err) } - Path = filepath.Join(absPath, "Config.yaml") + Path = filepath.Join(absPath, "config.yaml") } log.Println(constants.MsgHeaderLoadingConfig, Path)