Améliorations du code en ajoutant des patterns/regex + Amélioration du mode debug

This commit is contained in:
2025-02-04 16:27:07 +01:00
parent d8cd0c785b
commit 238a02796b
9 changed files with 72 additions and 25 deletions

View File

@@ -12,7 +12,7 @@ public class BakeEngine {
public BakeEngine(BakeCLI cli) {
this.cli = cli;
this.parser = new BakefileParser("Bakefile");
this.resolver = new DependencyResolver();
this.resolver = new DependencyResolver(cli.isDebug());
this.executor = new CommandExecutor(cli.isDebug());
}