Merge pull request #5353 from eatkins/run-main-supershell

Add runMain to supershell blacklist
This commit is contained in:
eugene yokota 2020-01-09 13:29:51 -05:00 committed by GitHub
commit 6257d90ddc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 1 deletions

View File

@ -70,7 +70,17 @@ private[sbt] final class TaskProgress(log: ManagedLogger)
log.logEvent(Level.Info, event)
}
private[this] val skipReportTasks =
Set("run", "bgRun", "fgRun", "scala", "console", "consoleProject", "consoleQuick", "state")
Set(
"run",
"runMain",
"bgRun",
"fgRun",
"scala",
"console",
"consoleProject",
"consoleQuick",
"state"
)
private[this] def maybeStartThread(): Unit = {
currentProgressThread.get() match {
case None =>