Skip to content

Commit

Permalink
Address deprecated 'Project.buildDir' in build scripts (#4191)
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault authored Oct 1, 2023
1 parent 12a4c92 commit 79454da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ tasks.processResources {

doLast {
copy {
from(File("$rootDir/LICENSE"))
into("$buildDir/resources/main/")
from(layout.buildDirectory.file("$rootDir/LICENSE"))
into(layout.buildDirectory.dir("resources/main"))
}
}
}
Expand Down

0 comments on commit 79454da

Please sign in to comment.