File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -518,12 +518,12 @@ object Build {
518
518
println(" Couldn't find scala-library on classpath, please run using script in bin dir instead" )
519
519
} else {
520
520
val dottyLib = packageAll.value(" dotty-library" )
521
- s """ $java -classpath .: $dottyLib: $scalaLib ${args.mkString(" " )}"" " .!
521
+ s " $java -classpath .: $dottyLib: $scalaLib ${args.mkString(" " )}" .!
522
522
}
523
523
},
524
524
run := dotc.evaluated,
525
- dotc := dotDynTask (" dotty.tools.dotc.Main" ).evaluated,
526
- repl := dotDynTask (" dotty.tools.repl.Main" ).evaluated,
525
+ dotc := runCompilerMain (" dotty.tools.dotc.Main" ).evaluated,
526
+ repl := runCompilerMain (" dotty.tools.repl.Main" ).evaluated,
527
527
528
528
// enable verbose exception messages for JUnit
529
529
testOptions in Test += Tests .Argument (
@@ -617,7 +617,7 @@ object Build {
617
617
}
618
618
)
619
619
620
- def dotDynTask (main : String ) = Def .inputTaskDyn {
620
+ def runCompilerMain (main : String ) = Def .inputTaskDyn {
621
621
val dottyLib = packageAll.value(" dotty-library" )
622
622
val args : List [String ] = spaceDelimited(" <arg>" ).parsed.toList
623
623
You can’t perform that action at this time.
0 commit comments