From fc448c2253cd5cb309e1268f73cd4007c0e8acca Mon Sep 17 00:00:00 2001 From: Yuvraaj Kelkar Date: Sun, 9 May 2021 11:21:01 -0700 Subject: [PATCH] Add the missing import and a gitignore entry for bin --- .gitignore | 3 +++ cmd/skopeo/copy.go | 1 + 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index e30fb5e3..bb25ec55 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,6 @@ result # ignore JetBrains IDEs (GoLand) config folder .idea + +# Ignore the bin directory +bin diff --git a/cmd/skopeo/copy.go b/cmd/skopeo/copy.go index 59421c9f..1d6d4dce 100644 --- a/cmd/skopeo/copy.go +++ b/cmd/skopeo/copy.go @@ -10,6 +10,7 @@ import ( "github.com/containers/common/pkg/retry" "github.com/containers/image/v5/copy" "github.com/containers/image/v5/docker/reference" + "github.com/containers/image/v5/manifest" "github.com/containers/image/v5/transports" "github.com/containers/image/v5/transports/alltransports" encconfig "github.com/containers/ocicrypt/config"