Skip to content

Commit e04d3a1

Browse files
Merge pull request #8587 from dotty-staging/fix-#8371
Fix #8371: Use bootstrapped genDocs
2 parents 42932dc + 00a9215 commit e04d3a1

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

project/Build.scala

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -409,6 +409,8 @@ object Build {
409409

410410
javaOptions ++= (javaOptions in `dotty-compiler`).value,
411411

412+
javaOptions += "-Xss3m",
413+
412414
genDocs := Def.inputTaskDyn {
413415
val dottydocExtraArgs = spaceDelimited("<arg>").parsed
414416

project/scripts/genDocs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ echo "Working directory: $PWD"
1919

2020
# this command will generate docs in $PWD/docs/_site
2121
SBT="$(cd "$(dirname "${BASH_SOURCE[0]}")" >& /dev/null && pwd)/sbt"
22-
"$SBT" "genDocs $GENDOC_EXTRA_ARGS"
22+
"$SBT" "dotty-bootstrapped/genDocs $GENDOC_EXTRA_ARGS"
2323

2424
# make sure that the previous command actually succeeded
2525
if [ ! -d "$PWD/docs/_site" ]; then

0 commit comments

Comments
 (0)