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.
1 parent edd2045 commit 0b48564Copy full SHA for 0b48564
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