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 @@ -2864,15 +2864,14 @@ object Build {
28642864
28652865 val languageReferenceConfig = Def .task {
28662866 Scala3 .value
2867- .add(OutputDir (" scaladoc/output/reference" ))
2867+ .add(OutputDir (file( " scaladoc/output/reference" ).getAbsoluteFile.getAbsolutePath ))
28682868 .add(SiteRoot (docs.getAbsolutePath))
28692869 .add(ProjectName (" Scala 3 Reference" ))
28702870 .add(ProjectVersion (baseVersion))
28712871 .remove[VersionsDictionaryUrl ]
28722872 .add(SourceLinks (List (
28732873 s " ${docs.getParentFile().getAbsolutePath}=github://scala/scala3/language-reference-stable "
28742874 )))
2875- .withTargets(List (" ___fake___.scala" ))
28762875 }
28772876
28782877 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