Skip to content

Commit

Permalink
fix(script): AbstractExecScript.injectDefaults should throw IllegalVa…
Browse files Browse the repository at this point in the history
…riableEvaluationException
  • Loading branch information
loicmathieu committed Jan 30, 2025
1 parent 67b3937 commit c08f4f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ protected DockerOptions injectDefaults(@NotNull DockerOptions original) {
* protected DockerOptions docker = DockerOptions.builder().build();
* }</pre>
*/
protected DockerOptions injectDefaults(RunContext runContext, @NotNull DockerOptions original) {
protected DockerOptions injectDefaults(RunContext runContext, @NotNull DockerOptions original) throws IllegalVariableEvaluationException {
// FIXME to keep backward compatibility, we call the old method from the new one by default
return injectDefaults(original);
}
Expand Down

0 comments on commit c08f4f2

Please sign in to comment.