From 07c89b49ffa59e75e9f82da29ff2fea5c32e1189 Mon Sep 17 00:00:00 2001 From: Zach Hill Date: Wed, 12 Feb 2020 14:05:55 -0800 Subject: [PATCH] Fix wrong import of docker reference Signed-off-by: Zach Hill --- cmd/skopeo/list_tags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/skopeo/list_tags.go b/cmd/skopeo/list_tags.go index b2786406..e56ed1c1 100644 --- a/cmd/skopeo/list_tags.go +++ b/cmd/skopeo/list_tags.go @@ -5,9 +5,9 @@ import ( "encoding/json" "fmt" "github.com/containers/image/v5/docker" + "github.com/containers/image/v5/docker/reference" "github.com/containers/image/v5/transports/alltransports" "github.com/containers/image/v5/types" - "github.com/docker/distribution/reference" "github.com/pkg/errors" "github.com/urfave/cli" "strings"