summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2018-10-01 06:01:37 -0700
committerGitHub <noreply@github.com>2018-10-01 06:01:37 -0700
commitdf978a264d7944351e7cded0a9506cab8a7bb0db (patch)
treee6082c10b545154fcc498f3346c91a06af0e3a90
parent05fe1bdbbc03022458fefdf9a16bfc5bfa075388 (diff)
parent28fe7003ac797c91c0f831c35dd51e54869e4266 (diff)
downloadpodman-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
-rw-r--r--libpod/runtime.go2
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)
}