Merge pull request #4630 from eed3si9n/wip/cancelable

make Global / cancelable true by default
This commit is contained in:
eugene yokota 2019-04-28 18:17:41 -04:00 committed by GitHub
commit 33f4f5a49b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ object Defaults extends BuildCommon {
},
trapExit :== true,
connectInput :== false,
cancelable :== false,
cancelable :== true,
taskCancelStrategy := { state: State =>
if (cancelable.value) TaskCancellationStrategy.Signal
else TaskCancellationStrategy.Null