fix snapshot

This commit is contained in:
Tejal Desai 2020-06-06 10:03:37 -07:00
parent ede69f8507
commit cbf4452fe9
1 changed files with 2 additions and 2 deletions

View File

@ -152,7 +152,6 @@ func (s *Snapshotter) scanFullFilesystem() ([]string, []string, error) {
} else if ok { } else if ok {
foundPaths = append(foundPaths, path) foundPaths = append(foundPaths, path)
} }
return nil return nil
}, },
Unsorted: true, Unsorted: true,
@ -173,8 +172,9 @@ func (s *Snapshotter) scanFullFilesystem() ([]string, []string, error) {
delete(existingPaths, path) delete(existingPaths, path)
if util.CheckIgnoreList(path) { if util.CheckIgnoreList(path) {
logrus.Tracef("Not adding %s to layer, as it's whitelisted", path) logrus.Tracef("Not adding %s to layer, as it's whitelisted", path)
filesToAdd = append(filesToAdd, path) continue
} }
filesToAdd = append(filesToAdd, path)
} }
// The paths left here are the ones that have been deleted in this layer. // The paths left here are the ones that have been deleted in this layer.