diff options
author | Urvashi Mohnani <umohnani@redhat.com> | 2017-11-02 15:31:49 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2017-11-07 19:16:31 +0000 |
commit | 23979f8e0644cd1e05e05b0fc9bcb4a1fe42bb82 (patch) | |
tree | dc018440069dece8df8f57de65cdbb46bb06350d /cmd/kpod/history.go | |
parent | d086beb7abc5ed002fe699ab02792aa47d50d581 (diff) | |
download | podman-23979f8e0644cd1e05e05b0fc9bcb4a1fe42bb82.tar.gz podman-23979f8e0644cd1e05e05b0fc9bcb4a1fe42bb82.tar.bz2 podman-23979f8e0644cd1e05e05b0fc9bcb4a1fe42bb82.zip |
Add 'kpod import' command
Imports a tarball and saves it as a filesystem image
Signed-off-by: Urvashi Mohnani <umohnani@redhat.com>
Closes: #12
Approved by: rhatdan
Diffstat (limited to 'cmd/kpod/history.go')
-rw-r--r-- | cmd/kpod/history.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/kpod/history.go b/cmd/kpod/history.go index ab2115aed..c21c1e338 100644 --- a/cmd/kpod/history.go +++ b/cmd/kpod/history.go @@ -87,7 +87,7 @@ func historyCmd(c *cli.Context) error { runtime, err := getRuntime(c) if err != nil { - return errors.Wrapf(err, "Could not get config") + return errors.Wrapf(err, "could not get runtime") } defer runtime.Shutdown(false) |