File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 45
45
- name : Generate reference documentation and test links
46
46
run : |
47
47
cd dotty
48
- ./project/scripts/sbt scaladoc/generateReferenceDocumentation --no-regenerate-expected-links
48
+ ./project/scripts/sbt " scaladoc/generateReferenceDocumentation --no-regenerate-expected-links"
49
49
./project/scripts/docsLinksStability ./scaladoc/output/reference ./project/scripts/expected-links/reference-expected-links.txt
50
50
cd ..
51
51
Original file line number Diff line number Diff line change 57
57
run : ./project/scripts/sbt scaladoc/generateTestcasesDocumentation
58
58
59
59
- name : Generate reference documentation
60
- run : ./project/scripts/sbt scaladoc/generateReferenceDocumentation --no-regenerate-expected-links
60
+ run : ./project/scripts/sbt scaladoc/generateReferenceDocumentation
61
61
62
62
- name : Generate Scala 3 documentation
63
63
run : ./project/scripts/sbt scaladoc/generateScalaDocumentation
Original file line number Diff line number Diff line change @@ -1380,7 +1380,7 @@ object Build {
1380
1380
}.value,
1381
1381
1382
1382
generateReferenceDocumentation := Def .inputTaskDyn {
1383
- val shouldRegenerateExpectedLinks = literal(" --no-regenerate-expected-links" ).? .parsed.isEmpty
1383
+ val shouldRegenerateExpectedLinks = ( Space ~> literal(" --no-regenerate-expected-links" ) ).? .parsed.isEmpty
1384
1384
1385
1385
val temp = IO .createTemporaryDirectory
1386
1386
IO .copyDirectory(file(" docs" ), temp / " docs" )
You can’t perform that action at this time.
0 commit comments