We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d14706 commit f30e384Copy full SHA for f30e384
src/main/java/com/ibm/cldk/utils/BuildProject.java
@@ -54,7 +54,7 @@ private static String getGradleCmd() {
54
String gradleWrapperExists = new File(projectRootPom, gradleWrapper).exists() ? "true" : "false";
55
56
if (new File(projectRootPom, gradleWrapper).exists()) {
57
- GRADLE_CMD = gradleWrapper;
+ GRADLE_CMD = String.valueOf(new File(projectRootPom, gradleWrapper));
58
} else {
59
GRADLE_CMD = gradle;
60
}
@@ -112,6 +112,7 @@ private static boolean commandExists(String command) {
112
int exitCode = process.waitFor();
113
return exitCode == 0;
114
} catch (IOException | InterruptedException exceptions) {
115
+ exceptions.printStackTrace();
116
return false;
117
118
0 commit comments