summaryrefslogtreecommitdiff
path: root/cmd/podman/main.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-06-23 14:01:36 -0400
committerGitHub <noreply@github.com>2020-06-23 14:01:36 -0400
commit92af85fcc2cb35b04ed74072ffd54d65b936d288 (patch)
treec1424a43cc606ed11c8b0b5fb5f9f199ab0d83c5 /cmd/podman/main.go
parent73514b1465fe2f79b82d017cdb11d587d6f7df3d (diff)
parent7377e578a9402a416579be92cee44c3b3786f81a (diff)
downloadpodman-92af85fcc2cb35b04ed74072ffd54d65b936d288.tar.gz
podman-92af85fcc2cb35b04ed74072ffd54d65b936d288.tar.bz2
podman-92af85fcc2cb35b04ed74072ffd54d65b936d288.zip
Merge pull request #6493 from jwhonce/wip/connection
V2 podman system connection
Diffstat (limited to 'cmd/podman/main.go')
-rw-r--r--cmd/podman/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/main.go b/cmd/podman/main.go
index 76ec7bc8e..f502e7a67 100644
--- a/cmd/podman/main.go
+++ b/cmd/podman/main.go
@@ -35,7 +35,7 @@ func main() {
_, found := c.Command.Annotations[registry.ParentNSRequired]
if rootless.IsRootless() && found {
c.Command.RunE = func(cmd *cobra.Command, args []string) error {
- return fmt.Errorf("cannot `%s` in rootless mode", cmd.CommandPath())
+ return fmt.Errorf("cannot run command %q in rootless mode", cmd.CommandPath())
}
}