mirror of https://github.com/sbt/sbt.git
Add consoleQuick to skipReportTasks
This was an oversight that caused consoleQuick to not work with supershell. We should probably try to figure out a way to allow custom tasks to black list themselves from super shell reporting.
This commit is contained in:
parent
44cc19e66d
commit
aa09a48b71
|
|
@ -71,7 +71,7 @@ private[sbt] final class TaskProgress(log: ManagedLogger)
|
|||
stop()
|
||||
}
|
||||
private[this] val skipReportTasks =
|
||||
Set("run", "bgRun", "fgRun", "scala", "console", "consoleProject")
|
||||
Set("run", "bgRun", "fgRun", "scala", "console", "consoleProject", "consoleQuick")
|
||||
private[this] def report(): Unit = {
|
||||
val currentTasks = activeTasks.toVector
|
||||
val ltc = lastTaskCount.get
|
||||
|
|
|
|||
Loading…
Reference in New Issue