mirror of
https://github.com/architectury/architectury-loom.git
synced 2026-03-30 13:05:27 -05:00
Handle missing classpath entries when source remapping.
This commit is contained in:
@@ -130,7 +130,9 @@ public final class SourceRemapperService implements SharedService {
|
||||
}
|
||||
|
||||
for (File file : classpath.getFiles()) {
|
||||
mercury.getClassPath().add(file.toPath());
|
||||
if (file.exists()) {
|
||||
mercury.getClassPath().add(file.toPath());
|
||||
}
|
||||
}
|
||||
|
||||
return mercury;
|
||||
|
||||
Reference in New Issue
Block a user