summaryrefslogtreecommitdiff
path: root/hack
diff options
context:
space:
mode:
Diffstat (limited to 'hack')
-rwxr-xr-xhack/man-page-checker5
1 files changed, 5 insertions, 0 deletions
diff --git a/hack/man-page-checker b/hack/man-page-checker
index 69c629c52..a1007d56f 100755
--- a/hack/man-page-checker
+++ b/hack/man-page-checker
@@ -41,6 +41,11 @@ done
# Make sure the descriptive text in podman-foo.1.md matches the one
# in the table in podman.1.md.
for md in *-*.1.md;do
+ # Currently the only exception.
+ if [ "$md" = "podman-remote.1.md" ]; then
+ continue
+ fi
+
desc=$(egrep -A1 '^#* NAME' $md|tail -1|sed -e 's/^podman[^ ]\+ - //')
# podman.1.md has a two-column table; podman-*.1.md all have three.