diff options
Diffstat (limited to 'cmd/podman/commit.go')
-rw-r--r-- | cmd/podman/commit.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/commit.go b/cmd/podman/commit.go index ef45a9f05..c721c8700 100644 --- a/cmd/podman/commit.go +++ b/cmd/podman/commit.go @@ -7,6 +7,7 @@ import ( "strings" "github.com/pkg/errors" + "github.com/projectatomic/libpod/cmd/podman/libpodruntime" "github.com/projectatomic/libpod/libpod" "github.com/projectatomic/libpod/libpod/buildah" "github.com/projectatomic/libpod/libpod/image" @@ -55,7 +56,7 @@ func commitCmd(c *cli.Context) error { if err := validateFlags(c, commitFlags); err != nil { return err } - runtime, err := getRuntime(c) + runtime, err := libpodruntime.GetRuntime(c) if err != nil { return errors.Wrapf(err, "could not get runtime") } |