Skip to content

Commit

Permalink
Merge pull request #30969 from snazy/fix-gradle-test-prop
Browse files Browse the repository at this point in the history
Gradle ITs: fix passing system properties
  • Loading branch information
geoand authored Feb 8, 2023
2 parents 16e7260 + 1a48b9c commit 40a2709
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ private List<String> getSytemProperties() {
}

private static String toPropertyArg(String name, String value) {
return new StringBuilder().append("-D=").append(name).append("=").append(value).toString();
return new StringBuilder().append("-D").append(name).append("=").append(value).toString();
}

private void printCommandOutput(File projectDir, List<String> command, BuildResult commandResult, int exitCode) {
Expand Down

0 comments on commit 40a2709

Please sign in to comment.