Skip to content

Commit

Permalink
Don't use deprecated API
Browse files Browse the repository at this point in the history
  • Loading branch information
Gekkio committed Aug 30, 2023
1 parent 15821cc commit 038702d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ dependencies {
}

val generateExtensionProps by tasks.registering() {
val output = file("$buildDir/generated/extension.properties")
val output = layout.buildDirectory.file("generated/extension.properties")
outputs.file(output)
doLast {
output.outputStream().use {
file(output).outputStream().use {
val props = Properties()
props += mapOf(
("name" to "GhidraBoy"),
Expand Down

0 comments on commit 038702d

Please sign in to comment.