Skip to content

Commit

Permalink
fixup! Add back check to skip doc check for JRuby
Browse files Browse the repository at this point in the history
  • Loading branch information
pirj committed Dec 11, 2019
1 parent 9f7b8af commit 664179f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion script/predicate_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ function additional_specs_available {

function documentation_enforced {
if [ -x ./bin/yard ]; then
return 0
if is_mri; then
return 0
else
return 1
fi
else
return 1
fi
Expand Down

0 comments on commit 664179f

Please sign in to comment.