Skip to content

Commit 84affe8

Browse files
committedJul 13, 2024
Fix issue with scaladoc
1 parent 8cc8a31 commit 84affe8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎project/Build.scala

+1
Original file line numberDiff line numberDiff line change
@@ -2456,6 +2456,7 @@ object ScaladocConfigs {
24562456
}
24572457

24582458
lazy val DefaultGenerationConfig = Def.task {
2459+
def distLocation = (dist / Universal / stage).value
24592460
DefaultGenerationSettings.value
24602461
}
24612462

‎project/scripts/bootstrappedOnlyCmdTests

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ echo "testing scala.quoted.Expr.run from sbt scala"
1515
grep -qe "val a: scala.Int = 3" "$tmp"
1616

1717
# setup for `scalac`/`scala` script tests
18-
"$SBT" "$DIST_PROJECT/universal/stage"
18+
"$SBT" "$DIST_PROJECT/Universal/stage"
1919

2020
echo "capturing scala version from $DIST_DIR/target/universal/stage/VERSION"
2121
IFS=':=' read -ra versionProps < "$ROOT/$DIST_DIR/target/universal/stage/VERSION" # temporarily set IFS to ':=' to split versionProps

0 commit comments

Comments
 (0)
Please sign in to comment.