Merge pull request #492 from AkihiroSuda/fix-dist-ls

content: fix panic during filepath.Walk()
This commit is contained in:
Stephen Day 2017-02-06 14:27:30 -08:00 committed by GitHub
commit f861817a8e
1 changed files with 3 additions and 0 deletions

View File

@ -173,6 +173,9 @@ func (cs *Store) Walk(fn WalkFunc) error {
root := filepath.Join(cs.root, "blobs")
var alg digest.Algorithm
return filepath.Walk(root, func(path string, fi os.FileInfo, err error) error {
if err != nil {
return err
}
if !fi.IsDir() && !alg.Available() {
return nil
}