Skip to content

Commit

Permalink
Tweak usage of build directory
Browse files Browse the repository at this point in the history
  • Loading branch information
kirill-grouchnikov committed Aug 22, 2023
1 parent 04cba03 commit 7d6ba9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ tasks.register("copyJars") {
mkdir("drop/${project.property("VERSION_NAME")}")
subprojects {
copy {
from("${project.layout.buildDirectory.get().asFile}/libs")
from(project.layout.buildDirectory.dir("libs").get().asFile)
include("${rootProject.name}-${project.name}-*-${project.property("VERSION_NAME")}.jar")
into("${rootProject.projectDir}/drop/${project.property("VERSION_NAME")}")
}
Expand Down

0 comments on commit 7d6ba9e

Please sign in to comment.