summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authoropenshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com>2022-08-04 14:23:35 +0000
committerGitHub <noreply@github.com>2022-08-04 14:23:35 +0000
commit1cf6afb788a681fc379d58d7f1cb69eb1690dba9 (patch)
tree91db4717fe50e4d5f8ee929d7253fe87441d9128 /cmd
parentd7ce5dfe2778c64b0a98a5a19097eb39eea5d2fb (diff)
parente67e602265d9bbedc05a5362bb8729fa323c41d8 (diff)
downloadpodman-1cf6afb788a681fc379d58d7f1cb69eb1690dba9.tar.gz
podman-1cf6afb788a681fc379d58d7f1cb69eb1690dba9.tar.bz2
podman-1cf6afb788a681fc379d58d7f1cb69eb1690dba9.zip
Merge pull request #15192 from vrothberg/fix-15185
podman info: hide `--debug`
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/system/info.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/system/info.go b/cmd/podman/system/info.go
index f8fd946cd..296fa4def 100644
--- a/cmd/podman/system/info.go
+++ b/cmd/podman/system/info.go
@@ -63,6 +63,7 @@ func infoFlags(cmd *cobra.Command) {
flags := cmd.Flags()
flags.BoolVarP(&debug, "debug", "D", false, "Display additional debug information")
+ _ = flags.MarkHidden("debug") // It's a NOP since Podman version 2.0
formatFlagName := "format"
flags.StringVarP(&inFormat, formatFlagName, "f", "", "Change the output format to JSON or a Go template")