Catch errors when walking cache directories

This commit is contained in:
Johannes Hertenstein 2018-10-08 15:47:34 +02:00
parent ed651df19b
commit 277cba4b32
1 changed files with 6 additions and 1 deletions

View File

@ -152,10 +152,15 @@ func runCache(opts CacheOptions, gopts GlobalOptions, args []string) error {
func dirSize(path string) (int64, error) {
var size int64
err := filepath.Walk(path, func(_ string, info os.FileInfo, err error) error {
if err != nil || info == nil {
return err
}
if !info.IsDir() {
size += info.Size()
}
return err
return nil
})
return size, err
}