From 3504d2a4dab810a8f70878f1410a0f17f193ad5d Mon Sep 17 00:00:00 2001 From: Abel Date: Tue, 31 Oct 2017 19:19:14 +0800 Subject: [PATCH] Add host env feature. --- config.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.go b/config.go index d51a1665..ac0a0615 100644 --- a/config.go +++ b/config.go @@ -134,10 +134,10 @@ func init() { if err != nil { panic(err) } - var filename = "app.conf" - if os.Getenv("BEEGO_MODE") !=""{ - filename= os.Getenv("BEEGO_MODE")+".app.conf" - } + var filename = "app.conf" + if os.Getenv("BEEGO_MODE") != "" { + filename = os.Getenv("BEEGO_MODE") + ".app.conf" + } appConfigPath = filepath.Join(workPath, "conf", filename) if !utils.FileExists(appConfigPath) { appConfigPath = filepath.Join(AppPath, "conf", filename)