Skip to content

Commit

Permalink
Fix #122
Browse files Browse the repository at this point in the history
  • Loading branch information
samolego committed Oct 24, 2024
1 parent 2957889 commit 8b7e2ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,13 @@ curseforge {
releaseType = "release"
if (project.minecraft_version.contains("-")) {
// yuck
addGameVersion "${project.minecraft_version.split("-")[0]}-Snaspshot"
addGameVersion "${project.minecraft_version.split("-")[0]}-Snapshot"
} else {
addGameVersion "${project.minecraft_version}"
}
addGameVersion "Fabric"

mainArtifact(file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar")) {
mainArtifact(remapJar.archiveFile) {
displayName = "[${project.minecraft_version}] FabricTailor ${version}"
}

Expand Down Expand Up @@ -142,7 +142,7 @@ modrinth {
versionName = "[${project.minecraft_version}] FabricTailor ${version}"
versionType = "release"

uploadFile = file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar")
uploadFile = remapJar.archiveFile

gameVersions = [project.minecraft_version]
loaders = ['fabric', 'quilt']
Expand Down

0 comments on commit 8b7e2ce

Please sign in to comment.