diff --git a/project-builder/scala-cli/build.scala b/project-builder/scala-cli/build.scala index 99cd74ba..b38ffecd 100644 --- a/project-builder/scala-cli/build.scala +++ b/project-builder/scala-cli/build.scala @@ -146,7 +146,7 @@ class CliTaskEvaluator(scalaVersion: String, repositoryDir: String, mavenRepoURL mavenRepoURL.map(s"--repository=" + _).toList, extraLibraryDependencies ) - .call(check = false, stdout = os.Inherit, stderr = os.Inherit) + .call(check = false, stdout = os.Inherit, stderr = os.Pipe) val result = proc.exitCode val tookMillis = (System.currentTimeMillis() - evalStart).toInt def nullT = null.asInstanceOf[T]