mirror of
https://github.com/go-gitea/gitea.git
synced 2025-06-21 13:38:00 +02:00
Absolute path for setting.CustomConf (#2085)
This commit is contained in:
@ -595,6 +595,8 @@ func NewContext() {
|
|||||||
|
|
||||||
if len(CustomConf) == 0 {
|
if len(CustomConf) == 0 {
|
||||||
CustomConf = CustomPath + "/conf/app.ini"
|
CustomConf = CustomPath + "/conf/app.ini"
|
||||||
|
} else if !filepath.IsAbs(CustomConf) {
|
||||||
|
CustomConf = filepath.Join(workDir, CustomConf)
|
||||||
}
|
}
|
||||||
|
|
||||||
if com.IsFile(CustomConf) {
|
if com.IsFile(CustomConf) {
|
||||||
|
Reference in New Issue
Block a user