diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-10-01 06:01:37 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-01 06:01:37 -0700 |
commit | df978a264d7944351e7cded0a9506cab8a7bb0db (patch) | |
tree | e6082c10b545154fcc498f3346c91a06af0e3a90 /libpod | |
parent | 05fe1bdbbc03022458fefdf9a16bfc5bfa075388 (diff) | |
parent | 28fe7003ac797c91c0f831c35dd51e54869e4266 (diff) | |
download | podman-df978a264d7944351e7cded0a9506cab8a7bb0db.tar.gz podman-df978a264d7944351e7cded0a9506cab8a7bb0db.tar.bz2 podman-df978a264d7944351e7cded0a9506cab8a7bb0db.zip |
Merge pull request #1571 from giuseppe/runtime-fix-runc-msg
runtime: fix message which assumes the runtime is runc
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/runtime.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/runtime.go b/libpod/runtime.go index fbd4c7529..988c418f3 100644 --- a/libpod/runtime.go +++ b/libpod/runtime.go @@ -395,7 +395,7 @@ func makeRuntime(runtime *Runtime) (err error) { } if !foundRuntime { return errors.Wrapf(ErrInvalidArg, - "could not find a working runc binary (configured options: %v)", + "could not find a working binary (configured options: %v)", runtime.config.RuntimePath) } |