Skip to content

Commit

Permalink
Fix version property in optimization task
Browse files Browse the repository at this point in the history
  • Loading branch information
jzbrooks committed Jun 30, 2024
1 parent 3eb02b1 commit 1eb0a79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vgo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ tasks {
description = "Runs proguard on the jar application."
group = "build"

inputs.file("build/libs/debug/vgo-$version.jar")
inputs.file("build/libs/debug/vgo.jar")
outputs.file("build/libs/vgo.jar")

val javaHome = System.getProperty("java.home")
Expand All @@ -124,7 +124,7 @@ tasks {
"build/libs/vgo.jar",
"--pg-conf",
"$rootDir/optimize.pro",
"build/libs/debug/vgo-$version.jar",
"build/libs/debug/vgo.jar",
)

dependsOn(getByName("jar"))
Expand Down

0 comments on commit 1eb0a79

Please sign in to comment.