summaryrefslogtreecommitdiff
path: root/libpod/runtime_img.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2019-10-15 06:06:45 -0400
committerGitHub <noreply@github.com>2019-10-15 06:06:45 -0400
commit25572cefa8f16580c4a61af86cf2c41281e0300f (patch)
tree4a1bdf52c2e6ac4013075bc4f9846a29828453b2 /libpod/runtime_img.go
parentb6b3acf2d74958957b40d557bf103072d120213e (diff)
parent17a7596af4f8e2898bd11945a5b3c085b882b021 (diff)
downloadpodman-25572cefa8f16580c4a61af86cf2c41281e0300f.tar.gz
podman-25572cefa8f16580c4a61af86cf2c41281e0300f.tar.bz2
podman-25572cefa8f16580c4a61af86cf2c41281e0300f.zip
Merge pull request #4262 from nalind/error-cause
Unwrap errors before comparing them
Diffstat (limited to 'libpod/runtime_img.go')
-rw-r--r--libpod/runtime_img.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/runtime_img.go b/libpod/runtime_img.go
index 8cc501629..35c0cdfb9 100644
--- a/libpod/runtime_img.go
+++ b/libpod/runtime_img.go
@@ -69,7 +69,7 @@ func (r *Runtime) RemoveImage(ctx context.Context, img *image.Image, force bool)
// the image. we figure out which repotag the user is trying to refer
// to and untag it.
repoName, err := img.MatchRepoTag(img.InputName)
- if hasChildren && err == image.ErrRepoTagNotFound {
+ if hasChildren && errors.Cause(err) == image.ErrRepoTagNotFound {
return "", errors.Errorf("unable to delete %q (cannot be forced) - image has dependent child images", img.ID())
}
if err != nil {