mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 16:14:10 -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<>();
|
List<String> result = new ArrayList<>();
|
||||||
|
|
||||||
for (File file : changedFiles) {
|
for (File file : changedFiles) {
|
||||||
String path = file.getPath();
|
String path = file.getPath().replace('\\', '/');
|
||||||
if (!path.endsWith(".class")) {
|
if (!path.endsWith(".class")) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user