Verified Commit a6f72b00 authored by Lukas Wiest's avatar Lukas Wiest :steam_locomotive:
Browse files

refactor(app): buildClasspath: only add path if exists

parent 7c086338
Showing with 5 additions and 1 deletion
+5 -1
......@@ -128,7 +128,11 @@ public class Testrunner
}
} else
{
files.add(new File(path));
File file = new File(path);
if (file.exists())
{
files.add(file);
}
}
}
return files;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment