Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,8 @@ object Build {

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

javaOptions += "-Xss3m",

genDocs := Def.inputTaskDyn {
val dottydocExtraArgs = spaceDelimited("<arg>").parsed

Expand Down
2 changes: 1 addition & 1 deletion project/scripts/genDocs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ echo "Working directory: $PWD"

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

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