Skip to content

Commit f3db3a2

Browse files
committed
Ignore result of patch creation
1 parent 5078e7d commit f3db3a2

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/main/java/org/mcphackers/mcp/tasks/TaskCreatePatch.java

+1-4
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,7 @@ protected Stage[] setStages() {
2929
if (!Files.exists(srcPathUnpatched)) {
3030
throw new IOException("Unpatched " + side.name + " sources cannot be found!");
3131
}
32-
boolean result = createDiffOperation(srcPathUnpatched, srcPathPatched, patchesOut);
33-
if (result) {
34-
throw new RuntimeException("Failed to create patches!");
35-
}
32+
createDiffOperation(srcPathUnpatched, srcPathPatched, patchesOut);
3633
})
3734
};
3835
}

0 commit comments

Comments
 (0)