Skip to content
Snippets Groups Projects
Commit 3a898f63 authored by Johannes Grohmann's avatar Johannes Grohmann
Browse files

fixed bug with relative paths

parent c18d189b
No related branches found
No related tags found
No related merge requests found
......@@ -218,7 +218,7 @@ public class QueryExecutionEngineImpl implements QueryExecutionEngine {
if (realtivePath.contains(".." + separator)) {
// resolve relative paths
for (int i = 0; i <= realtivePath.split(".." + separator).length - 2; i++) {
for (int i = 0; i <= realtivePath.split("\\.\\." + separator).length - 2; i++) {
baseFolder = baseFolder.getParentFile();
}
realtivePath = realtivePath.replace(".." + separator, "");
......
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