Skip to content

Commit 75944f1

Browse files
authored
Merge pull request #75 from IBM/1.0.5
mvn.bat -> mvn.cmd
2 parents 17a3bff + 21ef81a commit 75944f1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=1.0.4
1+
version=1.0.5

src/main/java/com/ibm/cldk/utils/BuildProject.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ private static String getMavenCommand() {
2424
Boolean isWindows = System.getProperty("os.name").toLowerCase().contains("windows");
2525
String mvnCommand;
2626
if (isWindows) {
27-
mvnCommand = new File(projectRootPom, "mvnw.bat").exists() ? String.valueOf(new File(projectRootPom, "mvnw.bat")) : "mvn.bat";
27+
mvnCommand = new File(projectRootPom, "mvnw.cmd").exists() ? String.valueOf(new File(projectRootPom, "mvnw.cmd")) : "mvn.cmd";
2828
} else {
2929
mvnCommand = new File(projectRootPom, "mvnw").exists() ? String.valueOf(new File(projectRootPom, "mvnw")) : "mvn";
3030
}

0 commit comments

Comments
 (0)