Skip to content

Commit

Permalink
Merge pull request #13910 from edsantiago/ultra_minor_message_fix
Browse files Browse the repository at this point in the history
[CI:DOCS] manpage vs --help checker: better error messages
  • Loading branch information
openshift-merge-robot authored Apr 18, 2022
2 parents cc4bc25 + 1b3dc89 commit d6f47e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/xref-helpmsgs-manpages
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down Expand Up @@ -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;
}
}
Expand Down

0 comments on commit d6f47e6

Please sign in to comment.