Skip to content

Commit 625efde

Browse files
committed
community-build: actually turn off supershell
The option was passed in the wrong place so wasn't actually set most of the time.
1 parent 0bd0fcf commit 625efde

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,11 @@ final case class SbtCommunityProject(
103103
override val runCommandsArgs: List[String] =
104104
// Run the sbt command with the compiler version and sbt plugin set in the build
105105
val sbtProps = Option(System.getProperty("sbt.ivy.home")) match
106-
case Some(ivyHome) => List(s"-Dsbt.ivy.home=$ivyHome", "-Dsbt.supershell=false")
106+
case Some(ivyHome) => List(s"-Dsbt.ivy.home=$ivyHome")
107107
case _ => Nil
108108
extraSbtArgs ++ sbtProps ++ List(
109109
"-sbt-version", "1.3.8",
110+
"-Dsbt.supershell=false",
110111
s"--addPluginSbtFile=$sbtPluginFilePath")
111112

112113
object projects:

0 commit comments

Comments
 (0)