chore: disable jpackage verbose

This commit is contained in:
hstyi
2025-02-09 17:04:10 +08:00
committed by hstyi
parent 724c5d2632
commit d17218bfbd

View File

@@ -262,7 +262,7 @@ tasks.register<Exec>("jpackage") {
options.add("-Dsun.java2d.opengl=true")
}
val arguments = mutableListOf("${Jvm.current().javaHome}/bin/jpackage", "--verbose")
val arguments = mutableListOf("${Jvm.current().javaHome}/bin/jpackage")
arguments.addAll(listOf("--runtime-image", "${buildDir}/jlink"))
arguments.addAll(listOf("--name", project.name.uppercaseFirstChar()))
arguments.addAll(listOf("--app-version", "${project.version}"))