mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-25 16:07: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}")
|
||||
|
||||
// Does the current project depend on any failed projects?
|
||||
val fp = project.dependsOn.filter {
|
||||
failedProjects.contains(it.name)
|
||||
}.map {
|
||||
it.name
|
||||
}
|
||||
val fp = project.dependsOn.filter { failedProjects.contains(it.name) }.map(Project::name)
|
||||
|
||||
if (fp.size > 0) {
|
||||
log(2, "Marking project ${project.name} as skipped")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue