fix #1211: return exit code 130 on sigint
This commit is contained in:
parent
f09e085c75
commit
1063868554
2 changed files with 2 additions and 1 deletions
|
|
@ -16,6 +16,7 @@ A preview of the next release can be installed from
|
||||||
|
|
||||||
- [#1216](https://github.com/babashka/babashka/issues/1216): support `core.async/alts!` using polyfill
|
- [#1216](https://github.com/babashka/babashka/issues/1216): support `core.async/alts!` using polyfill
|
||||||
- [#1220](https://github.com/babashka/babashka/issues/1220): add reflection on java.util.concurrent.Future
|
- [#1220](https://github.com/babashka/babashka/issues/1220): add reflection on java.util.concurrent.Future
|
||||||
|
- [#1211](https://github.com/babashka/babashka/issues/1211): return exit code 130 on sigint
|
||||||
|
|
||||||
## 0.7.9-SNAPSHOT
|
## 0.7.9-SNAPSHOT
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,4 +12,4 @@
|
||||||
(reify SignalHandler
|
(reify SignalHandler
|
||||||
(handle [_ _]
|
(handle [_ _]
|
||||||
;; This is needed to run shutdown hooks on interrupt, System/exit triggers those
|
;; This is needed to run shutdown hooks on interrupt, System/exit triggers those
|
||||||
(System/exit 0))))))
|
(System/exit 130))))))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue