Skip to content

Commit 8b54204

Browse files
committed
Debug
1 parent 0558c21 commit 8b54204

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

source/dub/dub.d

+6
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,9 @@ class Dub {
164164
{
165165
this.fs = fs;
166166
m_rootPath = NativePath(root_path);
167+
import std.stdio;
168+
writeln("root_path: ", root_path);
169+
writeln("m_rootPath: ", this.m_rootPath.toNativeString());
167170
if (!m_rootPath.absolute) m_rootPath = fs.getcwd() ~ m_rootPath;
168171

169172
init();
@@ -1663,6 +1666,9 @@ class Dub {
16631666

16641667
auto dub = new TestDub(null, ".", null, SkipPackageSuppliers.configured);
16651668
immutable testdir = dub.fs.getcwd() ~ "test-determineDefaultCompiler";
1669+
import std.stdio;
1670+
writeln("CWD: ", dub.fs.getcwd());
1671+
writeln("testdir: ", testdir);
16661672

16671673
immutable olddc = environment.get("DC", null);
16681674
immutable oldpath = environment.get("PATH", null);

0 commit comments

Comments
 (0)