aboutsummaryrefslogtreecommitdiffstats
path: root/cache/repo_cache.go
diff options
context:
space:
mode:
Diffstat (limited to 'cache/repo_cache.go')
-rw-r--r--cache/repo_cache.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/cache/repo_cache.go b/cache/repo_cache.go
index e70904df..4a6b007f 100644
--- a/cache/repo_cache.go
+++ b/cache/repo_cache.go
@@ -8,6 +8,7 @@ import (
"io/ioutil"
"os"
"path"
+ "path/filepath"
"sort"
"strconv"
"sync"
@@ -149,6 +150,11 @@ func (c *RepoCache) lock() error {
return err
}
+ err = os.MkdirAll(filepath.Dir(lockPath), 0777)
+ if err != nil {
+ return err
+ }
+
f, err := os.Create(lockPath)
if err != nil {
return err