Skip to content
Snippets Groups Projects
Commit 588e2298 authored by Reiner Jung's avatar Reiner Jung
Browse files

Still debugging.

parent 6e634957
No related branches found
No related tags found
No related merge requests found
...@@ -59,13 +59,10 @@ public class CompileResultsMain { ...@@ -59,13 +59,10 @@ public class CompileResultsMain {
rootNode = readJsonString(); rootNode = readJsonString();
} }
System.err.println("json " + jsonMainFile); String basePath=jsonMainFile.getParentFile()==null?"":jsonMainFile.getParentFile().getPath();
System.err.println("json " + jsonMainFile.getParentFile());
System.err.println("json " + jsonMainFile.getParentFile().getPath());
File jsonPartialFile = new File(basePath + File.separator + PARTIAL_RESULT_FILENAME);
File jsonPartialFile = new File(jsonMainFile.getParentFile().getPath() + File.separator + PARTIAL_RESULT_FILENAME); File jsonRelativeFile = new File(basePath + File.separator + RELATIVE_RESULT_FILENAME);
File jsonRelativeFile = new File(jsonMainFile.getParentFile().getPath() + File.separator + RELATIVE_RESULT_FILENAME);
JsonNode resultsNode = rootNode.get(RESULTS_LABEL); JsonNode resultsNode = rootNode.get(RESULTS_LABEL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment