mirror of
https://github.com/architectury/architectury-loom.git
synced 2026-04-01 21:17:46 -05:00
Fix split decompilation task names for Arch decompilers
This commit is contained in:
@@ -109,7 +109,7 @@ public final class SplitDecompileConfiguration extends DecompileConfiguration<Ma
|
||||
});
|
||||
|
||||
extension.getArchGameDecompilers().configureEach(decompiler -> {
|
||||
String taskName = "genSourcesWith" + decompiler.name();
|
||||
String taskName = "gen%sSourcesWith%s".formatted(name, decompiler.name());
|
||||
|
||||
// Decompiler will be passed to the constructor of ArchitecturyGenerateSourcesTask
|
||||
project.getTasks().register(taskName, ArchitecturyGenerateSourcesTask.class, decompiler).configure(task -> {
|
||||
|
||||
Reference in New Issue
Block a user