clean up
This commit is contained in:
parent
a3d512d8ce
commit
d06e381d1e
@ -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);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user