File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ project/local-plugins.sbt
18
18
.history
19
19
.ensime
20
20
.ensime_cache /
21
+ .sbt-scripted /
21
22
22
23
# npm
23
24
node_modules
Original file line number Diff line number Diff line change @@ -892,11 +892,14 @@ object Build {
892
892
sbtPlugin := true ,
893
893
version := " 0.1.8" ,
894
894
sbtTestDirectory := baseDirectory.value / " sbt-test" ,
895
- scriptedLaunchOpts += " -Dplugin.version=" + version.value,
896
- scriptedLaunchOpts += " -Dplugin.scalaVersion=" + dottyVersion,
895
+ scriptedLaunchOpts ++= Seq (
896
+ " -Dplugin.version=" + version.value,
897
+ " -Dplugin.scalaVersion=" + dottyVersion,
898
+ " -Dsbt.boot.directory=" + ((baseDirectory in ThisBuild ).value / " .sbt-scripted" ).getAbsolutePath // Workaround sbt/sbt#3469
899
+ ),
897
900
// By default scripted tests use $HOME/.ivy2 for the ivy cache. We need to override this value for the CI.
898
901
scriptedLaunchOpts ++= ivyPaths.value.ivyHome.map(" -Dsbt.ivy.home=" + _.getAbsolutePath).toList,
899
- scriptedBufferLog := false ,
902
+ scriptedBufferLog := true ,
900
903
scripted := scripted.dependsOn(Def .task {
901
904
val x0 = (publishLocal in `dotty-sbt-bridge-bootstrapped`).value
902
905
val x1 = (publishLocal in `dotty-interfaces`).value
You can’t perform that action at this time.
0 commit comments