Properly exit with code

This commit is contained in:
benoit74 2024-11-08 14:22:35 +00:00
parent 15b72022ce
commit bfa226bf81
No known key found for this signature in database
GPG Key ID: B89606434FC7B530

View File

@ -685,7 +685,7 @@ def sigint_handler(*args): # noqa: ARG001
def zimit():
run(sys.argv[1:])
sys.exit(run(sys.argv[1:]))
signal.signal(signal.SIGINT, sigint_handler)