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 b1b9e12 commit 7a8ce58Copy full SHA for 7a8ce58
build.gradle
@@ -171,7 +171,6 @@ subprojects {
171
"compileJava",
172
"compileKotlin",
173
"kaptKotlin",
174
- "kaptGenerateStubsKotlin",
175
"bootBuildInfo",
176
"bootJarMainClassName",
177
"jar",
gradle/utils.gradle
@@ -1,10 +1,7 @@
1
ext {
2
- def osName = System.getProperty("os.name").toLowerCase(Locale.ROOT)
3
- if (osName.contains("windows")) {
+ if (System.getProperty("os.name").toLowerCase(Locale.ROOT).contains("windows")) {
4
npmCommandName = "npm.cmd"
5
} else {
6
- def whichNpm = ["bash", "-c", "command -v npm"].execute()
7
- def npmPath = whichNpm.text.trim()
8
- npmCommandName = npmPath ?: "npm"
+ npmCommandName = "npm"
9
}
10
0 commit comments