From d496d0cc4d4d07fc77a7961e178225062f080d72 Mon Sep 17 00:00:00 2001
From: Unknwon <u@gogs.io>
Date: Sun, 2 Aug 2015 11:52:48 +0800
Subject: [PATCH] replace path.Join

---
 modules/setting/setting.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/setting/setting.go b/modules/setting/setting.go
index 9e9e564b4c..6b8eb5ecd7 100644
--- a/modules/setting/setting.go
+++ b/modules/setting/setting.go
@@ -203,11 +203,11 @@ func NewConfigContext() {
 
 	CustomPath = os.Getenv("GOGS_CUSTOM")
 	if len(CustomPath) == 0 {
-		CustomPath = path.Join(workDir, "custom")
+		CustomPath = workDir + "/custom"
 	}
 
 	if len(CustomConf) == 0 {
-		CustomConf = path.Join(CustomPath, "conf/app.ini")
+		CustomConf = CustomPath + "/conf/app.ini"
 	}
 
 	if com.IsFile(CustomConf) {