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

Merge pull request #953 from kristen1980/patch-2

Allow absolute path for filesystem cache
This commit is contained in:
astaxie 2014-12-18 21:24:17 +08:00
commit 76bb4827d0

2
cache/file.go vendored
View File

@ -92,8 +92,6 @@ func (fc *FileCache) StartAndGC(config string) error {
// Init will make new dir for file cache if not exist.
func (fc *FileCache) Init() {
app := filepath.Dir(os.Args[0])
fc.CachePath = filepath.Join(app, fc.CachePath)
if ok, _ := exists(fc.CachePath); !ok { // todo : error handle
_ = os.MkdirAll(fc.CachePath, os.ModePerm) // todo : error handle
}