fix #1211: return exit code 130 on sigint

This commit is contained in:
Michiel Borkent 2022-04-03 14:11:03 +02:00
parent f09e085c75
commit 1063868554
2 changed files with 2 additions and 1 deletions

View file

@ -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
- [#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

View file

@ -12,4 +12,4 @@
(reify SignalHandler
(handle [_ _]
;; This is needed to run shutdown hooks on interrupt, System/exit triggers those
(System/exit 0))))))
(System/exit 130))))))