mirror of https://github.com/sbt/sbt.git
Merge pull request #5353 from eatkins/run-main-supershell
Add runMain to supershell blacklist
This commit is contained in:
commit
6257d90ddc
|
|
@ -70,7 +70,17 @@ private[sbt] final class TaskProgress(log: ManagedLogger)
|
||||||
log.logEvent(Level.Info, event)
|
log.logEvent(Level.Info, event)
|
||||||
}
|
}
|
||||||
private[this] val skipReportTasks =
|
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 = {
|
private[this] def maybeStartThread(): Unit = {
|
||||||
currentProgressThread.get() match {
|
currentProgressThread.get() match {
|
||||||
case None =>
|
case None =>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue