Skip to content

Commit

Permalink
fix(script): container image is not taken into account
Browse files Browse the repository at this point in the history
This was due to a bug in Lombok when a property is null but the getter returns an object initialized with the builder default.

Fixes #3997
  • Loading branch information
loicmathieu committed Jun 11, 2024
1 parent 5e7cac4 commit e255598
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ protected CommandsWrapper commands(RunContext runContext) throws IllegalVariable
.withRunnerType(this.getRunner())
.withContainerImage(runContext.render(this.getContainerImage()))
.withTaskRunner(this.taskRunner)
.withDockerOptions(getDocker() != null ? this.injectDefaults(getDocker()) : null)
.withDockerOptions(this.docker != null ? this.injectDefaults(this.docker) : null)
.withNamespaceFiles(this.namespaceFiles)
.withInputFiles(this.inputFiles)
.withOutputFiles(this.outputFiles)
Expand Down

0 comments on commit e255598

Please sign in to comment.