diff options
Diffstat (limited to 'cmd/podman/pull.go')
-rw-r--r-- | cmd/podman/pull.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/pull.go b/cmd/podman/pull.go index 14e4e9252..0712283c3 100644 --- a/cmd/podman/pull.go +++ b/cmd/podman/pull.go @@ -8,6 +8,7 @@ import ( "github.com/containers/image/types" "github.com/pkg/errors" + "github.com/projectatomic/libpod/cmd/podman/libpodruntime" image2 "github.com/projectatomic/libpod/libpod/image" "github.com/projectatomic/libpod/pkg/util" "github.com/sirupsen/logrus" @@ -59,7 +60,7 @@ var ( // to copy an image from a registry to a local machine func pullCmd(c *cli.Context) error { forceSecure := false - runtime, err := getRuntime(c) + runtime, err := libpodruntime.GetRuntime(c) if err != nil { return errors.Wrapf(err, "could not get runtime") } |