We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c4fdb5 commit 56d017bCopy full SHA for 56d017b
cmd/crc/cmd/podman_env.go
@@ -57,7 +57,12 @@ func runPodmanEnv() error {
57
} else {
58
fmt.Println(shell.GetEnvString(userShell, "DOCKER_HOST", "npipe:////./pipe/crc-podman"))
59
}
60
- fmt.Println(shell.GenerateUsageHintWithComment(userShell, "crc podman-env"))
+ if root {
61
+ fmt.Println(shell.GenerateUsageHintWithComment(userShell, "crc podman-env --root"))
62
+ } else {
63
+ fmt.Println(shell.GenerateUsageHintWithComment(userShell, "crc podman-env"))
64
+ }
65
+
66
return nil
67
68
0 commit comments