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:
Eugene Yokota 2017-07-22 03:35:42 -04:00
parent 7b2b7d696b
commit a58b1ebce0
1 changed files with 3 additions and 1 deletions

View File

@ -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 _ =>