1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-28 09:54:14 +00:00

Merge pull request #2223 from tailnode/develop

修复windows上app.conf中include其他配置文件时找不到文件的BUG
This commit is contained in:
astaxie 2016-10-14 21:11:25 +08:00 committed by GitHub
commit e430de3307

View File

@ -23,6 +23,7 @@ import (
"io/ioutil"
"os"
"path"
"path/filepath"
"strconv"
"strings"
"sync"
@ -132,8 +133,8 @@ func (ini *IniConfig) parseFile(name string) (*IniConfigContainer, error) {
includefiles := strings.Fields(key)
if includefiles[0] == "include" && len(includefiles) == 2 {
otherfile := strings.Trim(includefiles[1], "\"")
if !path.IsAbs(otherfile) {
otherfile = path.Join(path.Dir(name), otherfile)
if !filepath.IsAbs(otherfile) {
otherfile = filepath.Join(filepath.Dir(name), otherfile)
}
i, err := ini.parseFile(otherfile)
if err != nil {