Skip to content

Commit 0065908

Browse files
RacoonDogMineGame159
authored andcommitted
fix config cache inputs
1 parent d575548 commit 0065908

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,10 @@ tasks {
4646
}
4747

4848
jar {
49-
val licenseSuffix = project.base.archivesName.get()
49+
inputs.property("archivesName", project.base.archivesName.get())
50+
5051
from("LICENSE") {
51-
rename { "${it}_${licenseSuffix}" }
52+
rename { "${it}_${inputs.properties["archivesName"]}" }
5253
}
5354
}
5455

0 commit comments

Comments
 (0)