Skip to content

Commit

Permalink
build: append minecraft version to mod version string
Browse files Browse the repository at this point in the history
  • Loading branch information
ishland committed Apr 26, 2024
1 parent 44349c3 commit d20e30f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ afterEvaluate {
}

processResources {
inputs.property "version", project.version
inputs.property "version", project.version + "+" + project.minecraft_version

filesMatching("fabric.mod.json") {
expand "version": project.version
expand "version": project.version + "+" + project.minecraft_version
}
}

Expand Down

0 comments on commit d20e30f

Please sign in to comment.