diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-11-26 10:03:37 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-26 10:03:37 -0800 |
commit | f4db780beaa7c7ae6cc9749905246151955bffaf (patch) | |
tree | 581d8a9bf1875426c4e3ebafe8f0bddd36559031 /libpod/image/image.go | |
parent | e3ece3bb907145110408c54f70b839777b09da44 (diff) | |
parent | 9d883d2032b112d5c65040629313cfba0de6c479 (diff) | |
download | podman-f4db780beaa7c7ae6cc9749905246151955bffaf.tar.gz podman-f4db780beaa7c7ae6cc9749905246151955bffaf.tar.bz2 podman-f4db780beaa7c7ae6cc9749905246151955bffaf.zip |
Merge pull request #1865 from baude/exists
add podman container|image exists
Diffstat (limited to 'libpod/image/image.go')
-rw-r--r-- | libpod/image/image.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpod/image/image.go b/libpod/image/image.go index 7e520d97e..a05c15160 100644 --- a/libpod/image/image.go +++ b/libpod/image/image.go @@ -252,7 +252,7 @@ func (i *Image) getLocalImage() (*storage.Image, error) { // The image has a registry name in it and we made sure we looked for it locally // with a tag. It cannot be local. if decomposedImage.hasRegistry { - return nil, errors.Errorf("%s", imageError) + return nil, errors.Wrapf(ErrNoSuchImage, imageError) } @@ -275,7 +275,7 @@ func (i *Image) getLocalImage() (*storage.Image, error) { return repoImage, nil } - return nil, errors.Wrapf(err, imageError) + return nil, errors.Wrapf(ErrNoSuchImage, err.Error()) } // ID returns the image ID as a string |