Skip to content

Commit dff31c2

Browse files
committed
mass update
gradle 8.14 kotlin 2.1.21
1 parent 00b507c commit dff31c2

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

bbootimg/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
1616

1717
plugins {
18-
kotlin("jvm") version "2.1.20"
18+
kotlin("jvm") version "2.1.21"
1919
application
2020
}
2121

bbootimg/src/main/kotlin/bootimg/v2/BootV2.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,8 +365,8 @@ data class BootV2(
365365
it.addRow("dtb", theDtb.file?.let { fullPath -> shortenPath(fullPath) })
366366
prints.add(Pair("dtb", shortenPath(theDtb.file.toString())))
367367
if (File(theDtb.file + ".0.${dtsSuffix}").exists()) {
368-
it.addRow("\\-- decompiled dts [$dtbCount]", shortenPath(theDtb.file + ".*.${dtsSuffix}"))
369-
prints.add(Pair("\\-- decompiled dts [$dtbCount]", shortenPath(theDtb.file + ".*.${dtsSuffix}")))
368+
it.addRow("\\-- decompiled dts [$dtbCount]", shortenPath(theDtb.file!!) + ".*.${dtsSuffix}")
369+
prints.add(Pair("\\-- decompiled dts [$dtbCount]", shortenPath(theDtb.file!!) + ".*.${dtsSuffix}"))
370370
}
371371
}
372372
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

helper/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
1616

1717
plugins {
18-
kotlin("jvm") version "2.1.20"
18+
kotlin("jvm") version "2.1.21"
1919
`java-library`
2020
application
2121
}

lazybox/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
99

1010
plugins {
11-
kotlin("jvm") version "2.1.20"
11+
kotlin("jvm") version "2.1.21"
1212
application
1313
}
1414

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pluginManagement {
22
plugins {
3-
kotlin("jvm") version "2.1.20"
3+
kotlin("jvm") version "2.1.21"
44
}
55
}
66
rootProject.name = "boot"

0 commit comments

Comments
 (0)