Skip to content

Commit

Permalink
Formater byggfil
Browse files Browse the repository at this point in the history
  • Loading branch information
bjerga committed Dec 16, 2024
1 parent 7fc1149 commit 3056efe
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@ tasks.jar {
}
doLast {
configurations.runtimeClasspath.get().forEach {
val file = layout.buildDirectory.file("libs/${it.name}").get().asFile
val file =
layout.buildDirectory
.file("libs/${it.name}")
.get()
.asFile
if (!file.exists()) {
it.copyTo(file)
}
Expand Down

0 comments on commit 3056efe

Please sign in to comment.