summaryrefslogtreecommitdiff
path: root/cmd/podman/images/list.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2022-06-30 09:58:52 -0400
committerGitHub <noreply@github.com>2022-06-30 09:58:52 -0400
commit3e8ab312395b32d0b43f1ac82adf53439b012893 (patch)
treeb8024f94b0f7446f6779c5d6e83bc6697c010387 /cmd/podman/images/list.go
parentaa109ae0f058060466b61d01571e37b7cc718b9a (diff)
parente8adec5f41388916b0f2206dc898a5587d51467c (diff)
downloadpodman-3e8ab312395b32d0b43f1ac82adf53439b012893.tar.gz
podman-3e8ab312395b32d0b43f1ac82adf53439b012893.tar.bz2
podman-3e8ab312395b32d0b43f1ac82adf53439b012893.zip
Merge pull request #14785 from saschagrunert/cmd-podman-errors
cmd/podman: switch to golang native error wrapping
Diffstat (limited to 'cmd/podman/images/list.go')
-rw-r--r--cmd/podman/images/list.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/podman/images/list.go b/cmd/podman/images/list.go
index 81011f9b1..94d8412e5 100644
--- a/cmd/podman/images/list.go
+++ b/cmd/podman/images/list.go
@@ -1,6 +1,7 @@
package images
import (
+ "errors"
"fmt"
"os"
"sort"
@@ -15,7 +16,6 @@ import (
"github.com/containers/podman/v4/cmd/podman/registry"
"github.com/containers/podman/v4/pkg/domain/entities"
"github.com/docker/go-units"
- "github.com/pkg/errors"
"github.com/spf13/cobra"
)
@@ -225,7 +225,7 @@ func sortImages(imageS []*entities.ImageSummary) ([]imageReporter, error) {
h.ImageSummary = *e
h.Repository, h.Tag, err = tokenRepoTag(tag)
if err != nil {
- return nil, errors.Wrapf(err, "error parsing repository tag: %q", tag)
+ return nil, fmt.Errorf("error parsing repository tag: %q: %w", tag, err)
}
if h.Tag == "<none>" {
untagged = append(untagged, h)