From 06ec843f5085495e538c3852cd0f3941e25cefb6 Mon Sep 17 00:00:00 2001 From: Liu Fengyun Date: Wed, 9 Dec 2020 18:15:32 +0100 Subject: [PATCH] Suppress warnings in community build It is changed in the following PR for statistics: https://github.com/lampepfl/dotty/pull/7207 --- community-build/src/scala/dotty/communitybuild/projects.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community-build/src/scala/dotty/communitybuild/projects.scala b/community-build/src/scala/dotty/communitybuild/projects.scala index 81f0072d113a..6cf13b5a2b3e 100644 --- a/community-build/src/scala/dotty/communitybuild/projects.scala +++ b/community-build/src/scala/dotty/communitybuild/projects.scala @@ -150,7 +150,7 @@ final case class SbtCommunityProject( ) private val baseCommand = - "clean; set updateOptions in Global ~= (_.withLatestSnapshots(false)); " + "clean; set logLevel in Global := Level.Error; set updateOptions in Global ~= (_.withLatestSnapshots(false)); " ++ s"""set dependencyOverrides in ThisBuild ++= ${dependencyOverrides.mkString("Seq(", ", ", ")")}; """ ++ s"++$compilerVersion!; "