We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0558c21 commit 8b54204Copy full SHA for 8b54204
source/dub/dub.d
@@ -164,6 +164,9 @@ class Dub {
164
{
165
this.fs = fs;
166
m_rootPath = NativePath(root_path);
167
+ import std.stdio;
168
+ writeln("root_path: ", root_path);
169
+ writeln("m_rootPath: ", this.m_rootPath.toNativeString());
170
if (!m_rootPath.absolute) m_rootPath = fs.getcwd() ~ m_rootPath;
171
172
init();
@@ -1663,6 +1666,9 @@ class Dub {
1663
1666
1664
1667
auto dub = new TestDub(null, ".", null, SkipPackageSuppliers.configured);
1665
1668
immutable testdir = dub.fs.getcwd() ~ "test-determineDefaultCompiler";
1669
1670
+ writeln("CWD: ", dub.fs.getcwd());
1671
+ writeln("testdir: ", testdir);
1672
1673
immutable olddc = environment.get("DC", null);
1674
immutable oldpath = environment.get("PATH", null);
0 commit comments