Fix __main__ to exit with correct exit code

This commit is contained in:
Michal Sojka 2024-12-22 22:02:11 +01:00
parent 70a0703a0e
commit 6afabdfe02

View file

@ -1,2 +1,3 @@
import sys
from .ros2nix import main from .ros2nix import main
main() sys.exit(main())