summaryrefslogtreecommitdiff
path: root/libpod
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-02-22 22:32:33 +0100
committerGitHub <noreply@github.com>2019-02-22 22:32:33 +0100
commit4d9f4cf71c79639da451a12a9e1d1d824bd15a9f (patch)
tree16bc34e9c9723b56f3e62becc4d5abef81eaa72a /libpod
parent84b3f2a7f622636e622416403d1f2642edbbd117 (diff)
parent56714d14fdd792096b25de80df239016c5b65d47 (diff)
downloadpodman-4d9f4cf71c79639da451a12a9e1d1d824bd15a9f.tar.gz
podman-4d9f4cf71c79639da451a12a9e1d1d824bd15a9f.tar.bz2
podman-4d9f4cf71c79639da451a12a9e1d1d824bd15a9f.zip
Merge pull request #2403 from giuseppe/fix-runtime
podman: --runtime has higher priority on runtime_path
Diffstat (limited to 'libpod')
-rw-r--r--libpod/options.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/libpod/options.go b/libpod/options.go
index 7c37fd65b..9aa020b56 100644
--- a/libpod/options.go
+++ b/libpod/options.go
@@ -149,6 +149,7 @@ func WithOCIRuntime(runtime string) RuntimeOption {
}
rt.config.OCIRuntime = runtime
+ rt.config.RuntimePath = nil
return nil
}