Skip to content

Commit

Permalink
Fix build task running bad remap tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebemish committed Apr 25, 2024
1 parent 3b3e829 commit 17385dc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main/java/dev/lukebemish/multisource/SourceSetup.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ private void executeOnProject(Project p) {
ext.set("loom.platform", platform);
this.setupActionsLate.forEach(p::afterEvaluate);
applyArchLoom(p);
p.getTasks().named("remapJar").configure(t -> {
t.setEnabled(false);
});
p.getTasks().named("remapSourcesJar").configure(t -> {
t.setEnabled(false);
});
setupActions.forEach(d -> d.execute(p));
}

Expand Down

0 comments on commit 17385dc

Please sign in to comment.