76bb4827 by astaxie

Merge pull request #953 from kristen1980/patch-2

Allow absolute path for filesystem cache
2 parents 3caba061 77ed1512
...@@ -92,8 +92,6 @@ func (fc *FileCache) StartAndGC(config string) error { ...@@ -92,8 +92,6 @@ func (fc *FileCache) StartAndGC(config string) error {
92 92
93 // Init will make new dir for file cache if not exist. 93 // Init will make new dir for file cache if not exist.
94 func (fc *FileCache) Init() { 94 func (fc *FileCache) Init() {
95 app := filepath.Dir(os.Args[0])
96 fc.CachePath = filepath.Join(app, fc.CachePath)
97 if ok, _ := exists(fc.CachePath); !ok { // todo : error handle 95 if ok, _ := exists(fc.CachePath); !ok { // todo : error handle
98 _ = os.MkdirAll(fc.CachePath, os.ModePerm) // todo : error handle 96 _ = os.MkdirAll(fc.CachePath, os.ModePerm) // todo : error handle
99 } 97 }
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!