diff options
Diffstat (limited to 'cmd/podman/umount.go')
-rw-r--r-- | cmd/podman/umount.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/umount.go b/cmd/podman/umount.go index 4b6aba99e..803cf034a 100644 --- a/cmd/podman/umount.go +++ b/cmd/podman/umount.go @@ -2,6 +2,7 @@ package main import ( "github.com/pkg/errors" + "github.com/projectatomic/libpod/cmd/podman/libpodruntime" "github.com/urfave/cli" ) @@ -17,7 +18,7 @@ var ( ) func umountCmd(c *cli.Context) error { - runtime, err := getRuntime(c) + runtime, err := libpodruntime.GetRuntime(c) if err != nil { return errors.Wrapf(err, "could not get runtime") } |