Skip to content

Commit ca3bbdf

Browse files
committed
Do not allow fatal errors in fs2
1 parent c1a5df2 commit ca3bbdf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

community-build/src/scala/dotty/communitybuild/projects.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ final case class SbtCommunityProject(
8484
extraSbtArgs: List[String] = Nil,
8585
sbtPublishCommand: String = null,
8686
sbtDocCommand: String = null,
87-
scalacOptions: List[String] = SbtCommunityProject.scalacOptions
87+
scalacOptions: List[String] = SbtCommunityProject.scalacOptions,
88+
override val environment: Map[String, String] = Map.empty,
8889
) extends CommunityProject:
8990
override val binaryName: String = "sbt"
9091

@@ -637,6 +638,7 @@ object projects:
637638
).mkString("; "),
638639
sbtPublishCommand = "coreJVM/publishLocal; coreJS/publishLocal",
639640
scalacOptions = SbtCommunityProject.scalacOptions.filter(_ != "-Wsafe-init"),
641+
environment = Map("GITHUB_ACTIONS" -> "false"),
640642
)
641643

642644
lazy val libretto = SbtCommunityProject(

0 commit comments

Comments
 (0)