Skip to content

Commit

Permalink
Windows: Do not attempt to clean empty windowsfilter folder
Browse files Browse the repository at this point in the history
Signed-off-by: Darren Stahl <[email protected]>
  • Loading branch information
darstahl committed Apr 17, 2017
1 parent f33f257 commit 5e4e357
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions daemon/graphdriver/windows/windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,9 @@ func (d *Driver) Cleanup() error {

items, err := ioutil.ReadDir(d.info.HomeDir)
if err != nil {
if os.IsNotExist(err) {
return nil
}
return err
}

Expand Down

0 comments on commit 5e4e357

Please sign in to comment.