summaryrefslogtreecommitdiff
path: root/cmd/podman/images/trust_set.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-05-24 13:48:50 -0400
committerGitHub <noreply@github.com>2022-05-24 13:48:50 -0400
commiteea7491d6b02893766b806775bf00c992a824fd2 (patch)
tree131f4e27cebc82ee86de3bc7165dec0ec6857946 /cmd/podman/images/trust_set.go
parentc6152f40a0d083a894b03ea18f1fabd1b4b68852 (diff)
parent5d37d80ff9783b2c811a06d80cd06fd6e338faf0 (diff)
downloadpodman-eea7491d6b02893766b806775bf00c992a824fd2.tar.gz
podman-eea7491d6b02893766b806775bf00c992a824fd2.tar.bz2
podman-eea7491d6b02893766b806775bf00c992a824fd2.zip
Merge pull request #14327 from rhatdan/common
Use containers/common/pkg/util.StringToSlice
Diffstat (limited to 'cmd/podman/images/trust_set.go')
-rw-r--r--cmd/podman/images/trust_set.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/images/trust_set.go b/cmd/podman/images/trust_set.go
index fff035d12..f4ff0cffc 100644
--- a/cmd/podman/images/trust_set.go
+++ b/cmd/podman/images/trust_set.go
@@ -5,10 +5,10 @@ import (
"regexp"
"github.com/containers/common/pkg/completion"
+ "github.com/containers/common/pkg/util"
"github.com/containers/podman/v4/cmd/podman/common"
"github.com/containers/podman/v4/cmd/podman/registry"
"github.com/containers/podman/v4/pkg/domain/entities"
- "github.com/containers/podman/v4/pkg/util"
"github.com/pkg/errors"
"github.com/spf13/cobra"
)