Merge pull request #1278 from accupara/compilation-fix

Add the missing import and a gitignore entry for bin
This commit is contained in:
Daniel J Walsh 2021-05-10 14:57:39 -04:00 committed by GitHub
commit 001775e994
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

3
.gitignore vendored
View File

@ -5,3 +5,6 @@ result
# ignore JetBrains IDEs (GoLand) config folder
.idea
# Ignore the bin directory
bin

View File

@ -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"