Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Geod24 committed Feb 15, 2024
1 parent 3d38000 commit ed76e94
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions source/dub/test/base.d
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ version "1.0.0"`, PackageFormat.sdl);

// `Dub.loadPackage` will set this package as the project
// While not required, it follows the common Dub use case.
dub.fs.print();
dub.loadPackage();
// This triggers the dependency resolution process that happens
// when one does not have a selection file in the project.
Expand Down Expand Up @@ -185,7 +186,10 @@ public class TestDub : Dub
{
this.fs = new FSEntry();
dg(this.fs);
import std.stdio;
writeln("Calling super with: ", ProjectPath.toNativeString());
super(ProjectPath.toNativeString(), null, SkipPackageSuppliers.none);
writeln("super set rootpath to: ", this.m_rootPath.toNativeString());
}

/// Avoid loading user configuration
Expand Down

0 comments on commit ed76e94

Please sign in to comment.