Skip to content

Commit

Permalink
WIP 343 Try to build with Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ascheman committed Dec 16, 2024
1 parent f3283ab commit af6fc8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ tasks.register("cleanIntegrationTestMavenPlugin") {
doLast {
def result = exec {
workingDir INTEGRATION_TEST_DIRECTORY_MAVEN
commandLine System.getProperty("os.name") ==~ /Windows.*/ ? "cmd /c mvnw.cmd" : "./mvnw",
commandLine System.getProperty("os.name") ==~ /Windows.*/ ? "mvnw.cmd" : "./mvnw",
"clean", "-Dhsc.version=${project.version}", "-ssettings.xml"
}

Expand All @@ -163,7 +163,7 @@ tasks.register("integrationTestMavenPlugin") {
doLast {
def result = exec {
workingDir INTEGRATION_TEST_DIRECTORY_MAVEN
commandLine System.getProperty("os.name") ==~ /Windows.*/ ? "cmd /c mvnw.cmd" : "./mvnw",
commandLine System.getProperty("os.name") ==~ /Windows.*/ ? "mvnw.cmd" : "./mvnw",
"verify", "-Dhsc.version=${project.version}", "-ssettings.xml"
}
logger.debug "Script output: $result"
Expand Down

0 comments on commit af6fc8e

Please sign in to comment.