@@ -623,13 +623,13 @@ object Build {
623
623
val args : List [String ] = spaceDelimited(" <arg>" ).parsed.toList
624
624
val attList = (dependencyClasspath in Runtime ).value
625
625
val jars = packageAll.value
626
+ val sep = File .pathSeparator
626
627
627
628
val scalaLib = findLib(attList, " scala-library" )
628
629
val dottyLib = jars(" dotty-library" )
629
630
630
631
def run (args : List [String ]): Unit = {
631
- val sep = File .pathSeparator
632
- val fullArgs = insertClasspathInArgs(args, s " . $sep$dottyLib$sep$scalaLib" )
632
+ val fullArgs = insertClasspathInArgs(args, List (" ." , dottyLib, scalaLib).mkString(sep))
633
633
runProcess(" java" :: fullArgs, wait = true )
634
634
}
635
635
@@ -645,7 +645,7 @@ object Build {
645
645
val asm = findLib(attList, " scala-asm" )
646
646
val dottyCompiler = jars(" dotty-compiler" )
647
647
val dottyInterfaces = jars(" dotty-interfaces" )
648
- run(insertClasspathInArgs(args1, s " $ dottyCompiler: $ dottyInterfaces: $ asm" ))
648
+ run(insertClasspathInArgs(args1, List ( dottyCompiler, dottyInterfaces, asm).mkString(sep) ))
649
649
} else run(args)
650
650
},
651
651
@@ -1087,8 +1087,8 @@ object Build {
1087
1087
Developer (
1088
1088
id = " liufengyun" ,
1089
1089
name = " Liu Fengyun" ,
1090
- email = " liufengyun@chaos-lab.com " ,
1091
- url = url(" http ://chaos-lab.com " )
1090
+ email = " liu@fengy.me " ,
1091
+ url = url(" https ://fengy.me " )
1092
1092
),
1093
1093
Developer (
1094
1094
id = " nicolasstucki" ,
0 commit comments