mirror of https://github.com/sbt/sbt.git
Keep ConsoleChannel open
Fixes #3282 For now, don't try to shutdown ConsoleChannel while the network is processing the command in the background.
This commit is contained in:
parent
7b2b7d696b
commit
a58b1ebce0
|
|
@ -48,7 +48,9 @@ private[sbt] final class ConsoleChannel(val name: String) extends CommandChannel
|
|||
case Some(src) if src.channelName != name =>
|
||||
askUserThread match {
|
||||
case Some(x) =>
|
||||
shutdown()
|
||||
// keep listening while network-origin command is running
|
||||
// make sure to test Windows and Cygwin, if you uncomment
|
||||
// shutdown()
|
||||
case _ =>
|
||||
}
|
||||
case _ =>
|
||||
|
|
|
|||
Loading…
Reference in New Issue