Skip to content

Commit

Permalink
Merge pull request #13836 from flouthoc/machine-rm-ignore-enoent
Browse files Browse the repository at this point in the history
machine,rm: Ignore `ENOENT` while cleaning machine paths
  • Loading branch information
openshift-merge-robot authored Apr 12, 2022
2 parents b8693f9 + 8fb9dbd commit 9822c46
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/machine/qemu/machine.go
Original file line number Diff line number Diff line change
Expand Up @@ -859,6 +859,9 @@ func (v *MachineVM) Remove(_ string, opts machine.RemoveOptions) (string, func()
return confirmationMessage, func() error {
for _, f := range files {
if err := os.Remove(f); err != nil {
if errors.Is(err, os.ErrNotExist) {
continue
}
logrus.Error(err)
}
}
Expand Down

0 comments on commit 9822c46

Please sign in to comment.