Merge pull request #5875 from eatkins/watch-bad-input

Don't stop watch input thread on bad input
This commit is contained in:
eugene yokota 2020-09-20 22:00:52 -04:00 committed by GitHub
commit 350f5497c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -788,7 +788,7 @@ private[sbt] object Continuous extends DeprecatedContinuous {
try {
interrupted.set(false)
terminal.inputStream.read match {
case -1 => Watch.Ignore
case -1 => throw new InterruptedException
case 3 => Watch.CancelWatch // ctrl+c on windows
case byte => inputHandler(byte.toChar.toString)
}
@ -800,7 +800,7 @@ private[sbt] object Continuous extends DeprecatedContinuous {
action match {
case Watch.Ignore =>
val stop = interrupted.get || Thread.interrupted
if ((!Terminal.systemInIsAttached || alternative.isDefined) && !stop) impl()
if (!stop) impl()
else None
case r => Some(r)
}