Verified Commit 7c086338 authored by Lukas Wiest's avatar Lukas Wiest 🚂
Browse files

fix(app): buildClasspath: check if folder exists before walk-through

parent 0c576205
......@@ -111,6 +111,11 @@ public class Testrunner
{
path = path.substring(0, path.length() - 1);
File pathFile = new File(path);
if (!pathFile.exists() || !pathFile.isDirectory())
{
continue;
}
for (File file : Objects.requireNonNull(pathFile.listFiles()))
{
if (file.isFile() && file.getName().endsWith(".jar"))
......
Markdown is supported
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