mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14:09 -08:00
Fix incremental compilation on Windows
This commit is contained in:
parent
ade00cc984
commit
ca017df6c9
|
@ -875,7 +875,7 @@ public class CodeServlet extends HttpServlet {
|
|||
List<String> result = new ArrayList<>();
|
||||
|
||||
for (File file : changedFiles) {
|
||||
String path = file.getPath();
|
||||
String path = file.getPath().replace('\\', '/');
|
||||
if (!path.endsWith(".class")) {
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user