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

Further debugging.

parent 68fd558f
No related branches found
No related tags found
No related merge requests found
......@@ -59,10 +59,10 @@ public class CompileResultsMain {
rootNode = readJsonString();
}
String basePath=jsonMainFile.getParentFile()==null?"":jsonMainFile.getParentFile().getPath();
String basePath=jsonMainFile.getParentFile()==null?"":jsonMainFile.getParentFile().getPath() + File.separator;
File jsonPartialFile = new File(basePath + File.separator + PARTIAL_RESULT_FILENAME);
File jsonRelativeFile = new File(basePath + File.separator + RELATIVE_RESULT_FILENAME);
File jsonPartialFile = new File(basePath + PARTIAL_RESULT_FILENAME);
File jsonRelativeFile = new File(basePath + RELATIVE_RESULT_FILENAME);
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