samolego / FabricTailor

A server-side or singleplayer skin changing mod for fabric.
https://modrinth.com/mod/FabricTailor
GNU Lesser General Public License v3.0
109 stars 17 forks source link

[BUG] Snapshot Curseforge Uploads End With "Snaspshot" [sic] Suffix #122

Closed solonovamax closed 1 month ago

solonovamax commented 1 month ago

Issue

Describe the bug

Uploads to curseforge end with the "-Snaspshot" [sic] suffix. This is a typo in your buildscript.

small typo lol

solonovamax commented 1 month ago

Also, in your buildscript I noticed that you used file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar") a few times. you can actually swap this out with jar.archiveFile, and it will give you the output jar file. However, it's probably best to instead use remapJar.archiveFile, as although the jar is remapped in-place, this would add a task dependency on the remapJar task.

samolego commented 1 month ago

Thanks :)