This commit is contained in:
bQUARKz 2026-02-24 18:55:29 +00:00
parent a3d512d8ce
commit d06e381d1e
Signed by: bquarkz
SSH Key Fingerprint: SHA256:Z7dgqoglWwoK6j6u4QC87OveEq74WOhFN+gitsxtkf8

View File

@ -19,8 +19,10 @@ public class DependencyPipelineStage implements PipelineStage {
rootCanonPath = Paths.get(ctx.config.rootProjectPath()).toRealPath(); rootCanonPath = Paths.get(ctx.config.rootProjectPath()).toRealPath();
} catch (IOException e) { } catch (IOException e) {
return BuildingIssues.empty() return BuildingIssues.empty()
.add(builder -> builder.error(true) .add(builder -> builder
.message("[BUILD]: root project directory no found: " + ctx.config.rootProjectPath())); .error(true)
.message("[BUILD]: root project directory no found: " + ctx.config.rootProjectPath())
.exception(e));
} }
final var dependencyConfig = new DependencyConfig(ctx.config.explain(), rootCanonPath); final var dependencyConfig = new DependencyConfig(ctx.config.explain(), rootCanonPath);
ctx.resolvedWorkspace = DependencyService.INSTANCE.run(dependencyConfig, logs); ctx.resolvedWorkspace = DependencyService.INSTANCE.run(dependencyConfig, logs);