mirror of
https://github.com/architectury/architectury-loom.git
synced 2026-04-02 13:37:45 -05:00
update stitch, fix error when mappings partially present
This commit is contained in:
@@ -34,7 +34,7 @@ dependencies {
|
||||
implementation ('org.zeroturnaround:zt-zip:1.13')
|
||||
implementation ('com.google.code.gson:gson:2.8.5')
|
||||
implementation ('com.google.guava:guava:27.0-jre')
|
||||
implementation ('net.fabricmc:stitch:0.1.0.8')
|
||||
implementation ('net.fabricmc:stitch:0.1.0.9')
|
||||
implementation ('net.fabricmc:tiny-remapper:0.1.0.18') {
|
||||
transitive = false
|
||||
}
|
||||
|
||||
@@ -71,10 +71,16 @@ public class PomfProvider extends DependencyProvider {
|
||||
}
|
||||
|
||||
if (!MAPPINGS_TINY_BASE.exists() || !MAPPINGS_TINY.exists()) {
|
||||
project.getLogger().lifecycle(":extracting " + mappingsJar.getName());
|
||||
try (FileSystem fileSystem = FileSystems.newFileSystem(mappingsJar.toPath(), null)) {
|
||||
Path fileToExtract = fileSystem.getPath("mappings/mappings.tiny");
|
||||
Files.copy(fileToExtract, MAPPINGS_TINY_BASE.toPath());
|
||||
if (!MAPPINGS_TINY_BASE.exists()) {
|
||||
project.getLogger().lifecycle(":extracting " + mappingsJar.getName());
|
||||
try (FileSystem fileSystem = FileSystems.newFileSystem(mappingsJar.toPath(), null)) {
|
||||
Path fileToExtract = fileSystem.getPath("mappings/mappings.tiny");
|
||||
Files.copy(fileToExtract, MAPPINGS_TINY_BASE.toPath());
|
||||
}
|
||||
}
|
||||
|
||||
if (MAPPINGS_TINY.exists()) {
|
||||
MAPPINGS_TINY.delete();
|
||||
}
|
||||
|
||||
project.getLogger().lifecycle(":populating field names");
|
||||
|
||||
Reference in New Issue
Block a user