Mojang / slicer

Resource pack migration tool for Minecraft 1.14
MIT License
174 stars 7 forks source link

Fix 1.20.5 JAR not being executable #11

Closed jedenastka closed 6 months ago

jedenastka commented 7 months ago

The package for the 1.20.5 Main class is slicer instead of com.mojang.slicer, which makes the JAR not executable, as the manifest points to com.mojang.slicer.Main and not slicer.Main. This seems to be a mistake, as all other Main classes are in the com.mojang.slicer package.

This changes the package and adjusts the directory to be consistent with other Main classes, and thus fixes the issue of the JAR not being executable.

Fixes #10.