Skip to content

Commit

Permalink
Fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
chippmann committed May 18, 2024
1 parent 5bba90e commit b1f4564
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions harness/benchmarks/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,14 @@ tasks {
projectDir.resolve("godot_kotlin_configuration.json"),
overwrite = true
)

val pyroscopeJarRelativePath = "profiling/pyroscope.jar"
val pyroscopeJar = projectDir.resolve(pyroscopeJarRelativePath)
projectDir
.resolve("godot_kotlin_configuration.json")
.apply {
writeText(readText().replace(pyroscopeJarRelativePath, pyroscopeJar.absolutePath))
}
}

finalizedBy(runBenchmarks)
Expand Down

0 comments on commit b1f4564

Please sign in to comment.