Skip to content

Commit 664179f

Browse files
committed
fixup! Add back check to skip doc check for JRuby
1 parent 9f7b8af commit 664179f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

script/predicate_functions.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,11 @@ function additional_specs_available {
2424

2525
function documentation_enforced {
2626
if [ -x ./bin/yard ]; then
27-
return 0
27+
if is_mri; then
28+
return 0
29+
else
30+
return 1
31+
fi
2832
else
2933
return 1
3034
fi

0 commit comments

Comments
 (0)