Skip to content

Commit

Permalink
Try build script fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
toxicity188 committed Jan 6, 2025
1 parent 0fdb529 commit 99055e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bootstrap/bukkit/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ tasks.jar {

beforeEvaluate {
modrinth {
uploadFile = tasks.jar.get()
uploadFile.set(tasks.jar)
versionName = "BetterHud ${project.version} for bukkit"
gameVersions = SUPPORTED_MINECRAFT_VERSION
loaders = listOf("bukkit", "spigot", "paper", "folia", "purpur")
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/fabric/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ tasks {

beforeEvaluate {
modrinth {
uploadFile = tasks.remapJar.get()
uploadFile.set(tasks.remapJar)
versionName = "BetterHud ${project.version} for fabric"
gameVersions = SUPPORTED_MINECRAFT_VERSION.subList(
SUPPORTED_MINECRAFT_VERSION.indexOf(supportedVersion),
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/velocity/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ tasks.jar {

beforeEvaluate {
modrinth {
uploadFile = tasks.jar.get()
uploadFile.set(tasks.jar)
versionName = "BetterHud ${project.version} for velocity"
gameVersions = SUPPORTED_MINECRAFT_VERSION
loaders = listOf("bukkit", "spigot", "paper", "folia", "purpur")
Expand Down

0 comments on commit 99055e1

Please sign in to comment.