Fix up (...)

This commit is contained in:
Alexandre Archambault 2015-12-30 01:34:49 +01:00
parent a1db5f1fdc
commit 2463e41df1
1 changed files with 2 additions and 2 deletions

View File

@ -355,12 +355,12 @@ class Helper(
val task = Task.gatherUnordered(tasks)
logger.foreach(_.stop())
val results = task.run
val errors = results.collect{case (artifact, -\/(err)) => artifact -> err }
val files0 = results.collect{case (artifact, \/-(f)) => f }
logger.foreach(_.stop())
if (errors.nonEmpty) {
println(s"${errors.size} error(s):")
for ((artifact, error) <- errors) {