mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 08:27:12 -07:00
Convert to reference.
This commit is contained in:
parent
a2c705ae6e
commit
a55256133e
1 changed files with 1 additions and 5 deletions
|
@ -37,11 +37,7 @@ class SequentialProjectRunner(val tasksByNames: (Project) -> ListMultimap<String
|
||||||
AsciiArt.logBox("Building ${project.name}")
|
AsciiArt.logBox("Building ${project.name}")
|
||||||
|
|
||||||
// Does the current project depend on any failed projects?
|
// Does the current project depend on any failed projects?
|
||||||
val fp = project.dependsOn.filter {
|
val fp = project.dependsOn.filter { failedProjects.contains(it.name) }.map(Project::name)
|
||||||
failedProjects.contains(it.name)
|
|
||||||
}.map {
|
|
||||||
it.name
|
|
||||||
}
|
|
||||||
|
|
||||||
if (fp.size > 0) {
|
if (fp.size > 0) {
|
||||||
log(2, "Marking project ${project.name} as skipped")
|
log(2, "Marking project ${project.name} as skipped")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue