File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 4545 - name : Generate reference documentation and test links
4646 run : |
4747 cd dotty
48- ./project/scripts/sbt scaladoc/generateReferenceDocumentation --no-regenerate-expected-links
48+ ./project/scripts/sbt " scaladoc/generateReferenceDocumentation --no-regenerate-expected-links"
4949 ./project/scripts/docsLinksStability ./scaladoc/output/reference ./project/scripts/expected-links/reference-expected-links.txt
5050 cd ..
5151
Original file line number Diff line number Diff line change 5757 run : ./project/scripts/sbt scaladoc/generateTestcasesDocumentation
5858
5959 - name : Generate reference documentation
60- run : ./project/scripts/sbt scaladoc/generateReferenceDocumentation --no-regenerate-expected-links
60+ run : ./project/scripts/sbt scaladoc/generateReferenceDocumentation
6161
6262 - name : Generate Scala 3 documentation
6363 run : ./project/scripts/sbt scaladoc/generateScalaDocumentation
Original file line number Diff line number Diff line change @@ -1380,7 +1380,7 @@ object Build {
13801380 }.value,
13811381
13821382 generateReferenceDocumentation := Def .inputTaskDyn {
1383- val shouldRegenerateExpectedLinks = literal(" --no-regenerate-expected-links" ).? .parsed.isEmpty
1383+ val shouldRegenerateExpectedLinks = ( Space ~> literal(" --no-regenerate-expected-links" ) ).? .parsed.isEmpty
13841384
13851385 val temp = IO .createTemporaryDirectory
13861386 IO .copyDirectory(file(" docs" ), temp / " docs" )
You can’t perform that action at this time.
0 commit comments