File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
scaladoc/src/dotty/tools/scaladoc Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -2830,15 +2830,14 @@ object Build {
28302830
28312831 val languageReferenceConfig = Def .task {
28322832 Scala3 .value
2833- .add(OutputDir (" scaladoc/output/reference" ))
2833+ .add(OutputDir (file( " scaladoc/output/reference" ).getAbsoluteFile.getAbsolutePath ))
28342834 .add(SiteRoot (docs.getAbsolutePath))
28352835 .add(ProjectName (" Scala 3 Reference" ))
28362836 .add(ProjectVersion (baseVersion))
28372837 .remove[VersionsDictionaryUrl ]
28382838 .add(SourceLinks (List (
28392839 s " ${docs.getParentFile().getAbsolutePath}=github://scala/scala3/language-reference-stable "
28402840 )))
2841- .withTargets(List (" ___fake___.scala" ))
28422841 }
28432842
28442843 val expectedLinksRegeneration = Def .task {
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ object Scaladoc:
131131 roots.split(File .pathSeparatorChar).toList.map(new File (_))
132132
133133 argumentFilesOrNone.fold((None , newContext)) { argumentFiles =>
134- val inFiles = argumentFiles.map(File (_)).filter(_.getName != " ___fake___.scala " )
134+ val inFiles = argumentFiles.map(File (_))
135135 val (existing, nonExisting) = inFiles.partition(_.exists)
136136
137137 if nonExisting.nonEmpty then report.warning(
You can’t perform that action at this time.
0 commit comments