Skip to content

Commit

Permalink
Fix cf upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Patbox committed Jun 4, 2023
1 parent a7c8ac0 commit a5e33bc
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 @@ -128,7 +128,7 @@ curseforge {
releaseType = "release"
changelog = System.getenv("CHANGELOG")
changelogType = "markdown"
addGameVersion ((String) project.minecraft_version.split("-")[0])
addGameVersion((project.minecraft_version.contains("-") ? ((String) project.minecraft_version.split("-")[0] + "-Snapshot") : project.minecraft_version))
addGameVersion "Fabric"
addGameVersion "Quilt"
mainArtifact(remapJar)
Expand Down

0 comments on commit a5e33bc

Please sign in to comment.