File tree 1 file changed +3
-2
lines changed 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -364,9 +364,10 @@ object Build {
364
364
val majorVersion = baseVersion.take(baseVersion.lastIndexOf('.' ))
365
365
IO .write(file(" ./docs/_site/versions/latest-nightly-base" ), majorVersion)
366
366
367
+ val separator = File .pathSeparator
367
368
val dottyLib = (packageAll in `dotty-compiler`).value(" dotty-library" )
368
369
val dottyInterfaces = (packageAll in `dotty-compiler`).value(" dotty-interfaces" )
369
- val otherDeps = (dependencyClasspath in Compile ).value.map(_.data).mkString(" : " )
370
+ val otherDeps = (dependencyClasspath in Compile ).value.map(_.data).mkString(separator )
370
371
val sources =
371
372
(unmanagedSources in (Compile , compile)).value ++
372
373
(unmanagedSources in (`dotty-compiler`, Compile )).value
@@ -375,7 +376,7 @@ object Build {
375
376
" -project" , " Dotty" ,
376
377
" -project-version" , dottyVersion,
377
378
" -project-url" , dottyGithubUrl,
378
- " -classpath" , s " $ dottyLib: $ dottyInterfaces: $ otherDeps"
379
+ " -classpath" , dottyLib + separator + dottyInterfaces + separator + otherDeps
379
380
)
380
381
(runMain in Compile ).toTask(
381
382
s """ dotty.tools.dottydoc.Main ${args.mkString(" " )} ${sources.mkString(" " )}"""
You can’t perform that action at this time.
0 commit comments