mirror of https://github.com/sbt/sbt.git
Merge pull request #4630 from eed3si9n/wip/cancelable
make Global / cancelable true by default
This commit is contained in:
commit
33f4f5a49b
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue