Skip to content

Commit

Permalink
fix dev suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
MattiDragon committed Jun 2, 2022
1 parent d6ff2cd commit b27f512
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
var run = System.env.GITHUB_RUN_NUMBER
var isDev = System.env.DEV_BUILD == "true"

version project.mod_version + (isDev ? "" : "-dev.$run") + "+mc.$minecraft_version"
version project.mod_version + (isDev ? "-dev.$run" : "") + "+mc.$minecraft_version"
group project.maven_group

repositories {
Expand Down

0 comments on commit b27f512

Please sign in to comment.