diff options
Diffstat (limited to 'cmd/podman/start.go')
-rw-r--r-- | cmd/podman/start.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/start.go b/cmd/podman/start.go index fb16e08cd..e10d338d8 100644 --- a/cmd/podman/start.go +++ b/cmd/podman/start.go @@ -5,6 +5,7 @@ import ( "os" "github.com/pkg/errors" + "github.com/projectatomic/libpod/cmd/podman/libpodruntime" "github.com/projectatomic/libpod/libpod" "github.com/sirupsen/logrus" "github.com/urfave/cli" @@ -67,7 +68,7 @@ func startCmd(c *cli.Context) error { return errors.Wrapf(libpod.ErrInvalidArg, "you cannot use sig-proxy without --attach") } - runtime, err := getRuntime(c) + runtime, err := libpodruntime.GetRuntime(c) if err != nil { return errors.Wrapf(err, "error creating libpod runtime") } |