Skip to content

Commit 7a8ce58

Browse files
committed
chore: rebase
1 parent b1b9e12 commit 7a8ce58

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,6 @@ subprojects {
171171
"compileJava",
172172
"compileKotlin",
173173
"kaptKotlin",
174-
"kaptGenerateStubsKotlin",
175174
"bootBuildInfo",
176175
"bootJarMainClassName",
177176
"jar",

gradle/utils.gradle

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
ext {
2-
def osName = System.getProperty("os.name").toLowerCase(Locale.ROOT)
3-
if (osName.contains("windows")) {
2+
if (System.getProperty("os.name").toLowerCase(Locale.ROOT).contains("windows")) {
43
npmCommandName = "npm.cmd"
54
} else {
6-
def whichNpm = ["bash", "-c", "command -v npm"].execute()
7-
def npmPath = whichNpm.text.trim()
8-
npmCommandName = npmPath ?: "npm"
5+
npmCommandName = "npm"
96
}
107
}

0 commit comments

Comments
 (0)