Skip to content

Commit 60fe438

Browse files
s!m
1 parent 60e75fe commit 60fe438

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

scripts/mancheck.sh

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@
1313
#
1414
# shellcheck disable=SC2086
1515

16-
17-
if ! command -v type mandoc > /dev/null; then
18-
echo "skipping mancheck because mandoc is not installed"
19-
exit 0
20-
fi
16+
# TODO: uncomment when #12101 lands
17+
[ -x "/bin/mandoc" ] || [ -x "/usr/bin/mandoc" ] || { echo skip; exit 0; }
18+
#if ! command -v mandoc > /dev/null; then
19+
# echo "skipping mancheck because mandoc is not installed"
20+
# exit 0
21+
#fi
2122

2223
IFS="
2324
"

0 commit comments

Comments
 (0)