Skip to content

Commit

Permalink
Return skipEvaluation on undefined path
Browse files Browse the repository at this point in the history
  • Loading branch information
Philippluca committed Dec 13, 2022
1 parent dd5a94e commit ad5876a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public Value evaluateInternal(String validationKind, String usageScope, IomObjec
Value argObjects = arguments[0];
Value argPath = arguments[1];

if (argObjects.isUndefined()) {
if (argObjects.isUndefined() || argPath.isUndefined()) {
return Value.createSkipEvaluation();
}

Expand Down

0 comments on commit ad5876a

Please sign in to comment.