Reenable cache

In 6341c7d72c, the cache was accidentally
disabled due to a bug, this commit reenables the cache.
This commit is contained in:
Alexander Neumann 2017-12-03 15:52:57 +01:00
parent 63bb1933e5
commit ad82781743
1 changed files with 3 additions and 1 deletions

View File

@ -363,6 +363,9 @@ func OpenRepository(opts GlobalOptions) (*repository.Repository, error) {
return s, nil
}
// start using the cache
s.UseCache(c)
oldCacheDirs, err := cache.Old(c.Base)
if err != nil {
Warnf("unable to find old cache directories: %v", err)
@ -389,7 +392,6 @@ func OpenRepository(opts GlobalOptions) (*repository.Repository, error) {
len(oldCacheDirs), c.Base)
}
s.UseCache(c)
return s, nil
}