diff options
author | Joey Hess <joeyh@joeyh.name> | 2016-04-20 14:29:54 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2016-04-20 14:29:54 -0400 |
commit | b0724fedc9be00da64231bc6458982b5b9654bba (patch) | |
tree | dc40195c9839de8c8c7f86212eba78ea0f52a8ed | |
parent | 153ef77b11fefcc80ee519226853a74cbf13f24c (diff) |
only filter out mdwn2man warning, not other warnings
-rwxr-xr-x | Build/mdwn2man | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/mdwn2man b/Build/mdwn2man index 32c4d4ac4..f56d9b0c7 100755 --- a/Build/mdwn2man +++ b/Build/mdwn2man @@ -21,7 +21,7 @@ while (<>) { s/^\t/ /; s/-/\\-/g; s/git\\-annex/git-annex/g; - s/^Warning:.*//g; + s/^Warning:.*mdwn2man.*//g; s/^$/.PP\n/; s/^\*\s+(.*)/.IP "$1"/; next if $_ eq ".PP\n" && $skippara; |