diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f3619a5..eda6e86c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/babashka/impl/sigint_handler.clj b/src/babashka/impl/sigint_handler.clj index 508e01b2..49903518 100644 --- a/src/babashka/impl/sigint_handler.clj +++ b/src/babashka/impl/sigint_handler.clj @@ -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))))))