Fix access to private std.path.getcwd

This commit is contained in:
Carsten Schlote 2018-09-19 15:57:46 +02:00
parent da20313a1b
commit d89ca3e739
1 changed files with 5 additions and 5 deletions

View File

@ -224,17 +224,17 @@ class CompilerLogWidget : LogWidget {
}
void resolveRelativePath(ref string path, int line) {
import std.path : getcwd, absolutePath;
Log.d("resolveRelativePath ", path, " current directory: ", getcwd);
import std.path : absolutePath;
Log.d("resolveRelativePath ", path);
string prjName = findProjectForLine(line);
if (prjName) {
Log.d("Error is in project ", prjName);
}
string base = _baseDirectory;
if (!base)
base = getcwd;
// TODO: select proper base
path = absolutePath(path, base);
else
path = absolutePath(path);
Log.d("converted to absolute path: ", path);
}
///