mirror of https://github.com/sbt/sbt.git
Add runMain to supershell blacklist
See https://github.com/sbt/sbt/issues/5352.
This commit is contained in:
parent
b37bad6644
commit
ccce238b16
|
|
@ -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 =>
|
||||
|
|
|
|||
Loading…
Reference in New Issue