mirror of
https://github.com/astaxie/beego.git
synced 2024-11-04 21:10:54 +00:00
Merge pull request #953 from kristen1980/patch-2
Allow absolute path for filesystem cache
This commit is contained in:
commit
76bb4827d0
2
cache/file.go
vendored
2
cache/file.go
vendored
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user