File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -519,7 +519,7 @@ object Build {
519
519
520
520
val fullArgs = args.span(_ != " -classpath" ) match {
521
521
case (beforeCp, " -classpath" :: cp :: rest) => beforeCp ++ List (" -classpath" , cp + " :" + dottyLib) ++ rest
522
- case (beforeCp, _) => beforeCp ++ (" -classpath" :: dottyLib :: Nil )
522
+ case (beforeCp, _) => beforeCp ++ List (" -classpath" , dottyLib)
523
523
}
524
524
525
525
(runMain in Compile ).toTask(
@@ -534,7 +534,7 @@ object Build {
534
534
535
535
val fullArgs = args.span(_ != " -classpath" ) match {
536
536
case (beforeCp, " -classpath" :: cp :: rest) => beforeCp ++ List (" -classpath" , cp + " :" + dottyLib) ++ rest
537
- case (beforeCp, _) => beforeCp ++ (" -classpath" :: dottyLib :: Nil )
537
+ case (beforeCp, _) => beforeCp ++ List (" -classpath" , dottyLib)
538
538
}
539
539
540
540
(runMain in Compile ).toTask(
You can’t perform that action at this time.
0 commit comments