diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-04-18 13:39:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-18 13:39:54 -0400 |
commit | d6f47e692bc694d3ec4f3505acaccf7fa0b73231 (patch) | |
tree | d170f415eeedd1e39842ddc2cc7bae4c89afc12b | |
parent | cc4bc25bd0093dada976c5d0ea71d14c7a4c9a14 (diff) | |
parent | 1b3dc899d67519348d12f891c34a08645304bbbb (diff) | |
download | podman-d6f47e692bc694d3ec4f3505acaccf7fa0b73231.tar.gz podman-d6f47e692bc694d3ec4f3505acaccf7fa0b73231.tar.bz2 podman-d6f47e692bc694d3ec4f3505acaccf7fa0b73231.zip |
Merge pull request #13910 from edsantiago/ultra_minor_message_fix
[CI:DOCS] manpage vs --help checker: better error messages
-rwxr-xr-x | hack/xref-helpmsgs-manpages | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hack/xref-helpmsgs-manpages b/hack/xref-helpmsgs-manpages index 1f022531e..7c07a4f01 100755 --- a/hack/xref-helpmsgs-manpages +++ b/hack/xref-helpmsgs-manpages @@ -135,7 +135,7 @@ sub xref_by_help { } else { my $man = $man->{_path} || 'man'; - warn "$ME: podman @subcommand --help lists $k, but $k not in $man\n"; + warn "$ME: 'podman @subcommand --help' lists '$k', which is not in $man\n"; ++$Errs; } } @@ -186,7 +186,7 @@ sub xref_by_man { # Special case: podman completion is a hidden command next if $k eq 'completion'; - warn "$ME: podman @subcommand: $k in $man, but not --help\n"; + warn "$ME: 'podman @subcommand': $k in $man, but not --help\n"; ++$Errs; } } |