Skip to content

Commit

Permalink
style: fix CI style checks
Browse files Browse the repository at this point in the history
Signed-off-by: Pexers <[email protected]>
  • Loading branch information
Pexers committed Jun 17, 2024
1 parent df27320 commit 7e127fe
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,11 @@ public ArgumentListBuilder appendExtraVars(ArgumentListBuilder args) {
// assuming Groovy representation for Boolean values
if (value.equals("true") || value.equals("false")) {
// JSON format is required for Boolean variables
sb.append("{\"").append(envVars.expand(var.getKey())).append("\":").append(value).append("}");
sb.append("{\"")
.append(envVars.expand(var.getKey()))
.append("\":")
.append(value)
.append("}");
} else {
sb.append(envVars.expand(var.getKey())).append("=").append(value);
}
Expand Down

0 comments on commit 7e127fe

Please sign in to comment.