diff options
Diffstat (limited to 'cmd/podman/mount.go')
-rw-r--r-- | cmd/podman/mount.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/mount.go b/cmd/podman/mount.go index 2d274cfaf..e913afb75 100644 --- a/cmd/podman/mount.go +++ b/cmd/podman/mount.go @@ -6,6 +6,7 @@ import ( "github.com/pkg/errors" of "github.com/projectatomic/libpod/cmd/podman/formats" + "github.com/projectatomic/libpod/cmd/podman/libpodruntime" "github.com/urfave/cli" ) @@ -50,7 +51,7 @@ func mountCmd(c *cli.Context) error { return err } - runtime, err := getRuntime(c) + runtime, err := libpodruntime.GetRuntime(c) if err != nil { return errors.Wrapf(err, "could not get runtime") } |