dangerzone/install/macos
Alex Pyrgiotis e11aaec3ac
Always use sys.exit when exiting the application
The `exit()` [1] function is not necessarily present in every Python
environment, as it's added by the `site` module. Also, this function is
"[...] useful for the interactive interpreter shell and should not be
used in programs"

For this reason, we replace all such occurrences with `sys.exit()` [2],
which is the canonical function to exit Python programs.

[1]: https://docs.python.org/3/library/constants.html#exit
[2]: https://docs.python.org/3/library/sys.html#sys.exit
2024-05-09 15:57:42 +03:00
..
build-app.py Always use sys.exit when exiting the application 2024-05-09 15:57:42 +03:00
dangerzone.icns Start adding Mac app bundle packaging 2020-01-13 12:41:14 -08:00
document.icns Add dangerzone document icon 2020-01-13 14:10:02 -08:00
entitlements.plist Successfully boot VM 2021-06-30 14:27:26 -07:00