Skip to content

Commit

Permalink
build: Fix copyDependencies task
Browse files Browse the repository at this point in the history
  • Loading branch information
felipebz committed Jun 9, 2024
1 parent dd0e8e5 commit 68c9455
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 @@ -47,7 +47,7 @@ application {

val copyDependencies = tasks.create<Sync>("copyDependencies") {
from(configurations.runtimeClasspath)
into("${layout.buildDirectory}/dependencies/flat")
into(layout.buildDirectory.dir("dependencies/flat"))
}
tasks["assemble"].dependsOn(copyDependencies)

Expand Down

0 comments on commit 68c9455

Please sign in to comment.