Skip to content

Commit 27f4566

Browse files
committed
chore: fix archive file name in bootstrap
1 parent 2cd29a5 commit 27f4566

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@ tasks {
8282
}
8383

8484
if (version != "unspecified") {
85-
archiveFileName.set("${rootProject.name}-v${version}.jar")
85+
archiveFileName.set("$pluginId-v${version}.jar")
8686
} else {
87-
archiveFileName.set("${rootProject.name}.jar")
87+
archiveFileName.set("$pluginId.jar")
8888
}
8989

9090
if (project.gradle.startParameter.taskNames.contains("publish")) {

0 commit comments

Comments
 (0)