aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--stage2/plugins/Dotty.scala6
1 files changed, 4 insertions, 2 deletions
diff --git a/stage2/plugins/Dotty.scala b/stage2/plugins/Dotty.scala
index 5700e4d..50255d5 100644
--- a/stage2/plugins/Dotty.scala
+++ b/stage2/plugins/Dotty.scala
@@ -77,11 +77,11 @@ class DottyLib(
val args = Seq(
// FIXME: can we use compiler dependency here?
"-bootclasspath", dottyDependency.classpath.string, // FIXME: does this break for builds that don't have scalac dependencies?
- "-classpath", (dependencyClasspath ++ dottyDependency.classpath).string, // FIXME: does this break for builds that don't have scalac dependencies?
+ "-classpath", dependencyClasspath.string, // FIXME: does this break for builds that don't have scalac dependencies?
"-d", docTarget.toString
) ++ compileArgs ++ sourceFiles.map(_.toString)
logger.lib("creating docs for source files "+args.mkString(", "))
- redirectOutToErr{
+ val exitCode = redirectOutToErr{
runMain(
"dotty.tools.dottydoc.api.java.Dottydoc",
args,
@@ -89,6 +89,8 @@ class DottyLib(
fakeInstance = true // this is a hack as Dottydoc's main method is not static
)
}
+ System.err.println("done")
+ exitCode
}
}