We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents edd2045 + 0b48564 commit 43fc40cCopy full SHA for 43fc40c
build.sbt
@@ -65,7 +65,8 @@ lazy val root = (project in file(".")).
65
val args = (new File(canon, "FunctionConverters.scala")).toString :: Nil
66
val runTarget = (mainClass in Compile in fnGen).value getOrElse "No main class defined for function conversion generator"
67
val classPath = (fullClasspath in Compile in fnGen).value
68
- toError(runner.value.run(runTarget, classPath.files, args, streams.value.log))
+ runner.value.run(runTarget, classPath.files, args, streams.value.log)
69
+ .foreach(sys.error)
70
(out ** "*.scala").get
71
}.taskValue,
72
0 commit comments