diff options
author | Rick Heil <rickheil@partnersandsimons.com> | 2020-06-25 10:37:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-25 10:37:40 (GMT) |
commit | 5f190d2cc60cd82a604cbffb58b6ca8f40350a7a (patch) | |
tree | 1a4907f0dbcca77c7d4ec4132b932ff8391e368e /Misc | |
parent | 1931e64de127db766031c442a083905cd74e2485 (diff) | |
download | cpython-5f190d2cc60cd82a604cbffb58b6ca8f40350a7a.zip cpython-5f190d2cc60cd82a604cbffb58b6ca8f40350a7a.tar.gz cpython-5f190d2cc60cd82a604cbffb58b6ca8f40350a7a.tar.bz2 |
bpo-39580: add check for CLI installation on macOS (GH-20271)
Adds a simple check for whether or not the package is being installed in the GUI or using installer on the command line. This addresses an issue where CLI-based software management tools (such as Munki) unexpectedly open Finder windows into a GUI session during installation runs.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/macOS/2020-06-25-06-09-00.bpo-39580.N_vJ9h.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/macOS/2020-06-25-06-09-00.bpo-39580.N_vJ9h.rst b/Misc/NEWS.d/next/macOS/2020-06-25-06-09-00.bpo-39580.N_vJ9h.rst new file mode 100644 index 0000000..95d6535 --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2020-06-25-06-09-00.bpo-39580.N_vJ9h.rst @@ -0,0 +1,2 @@ +Avoid opening Finder window if running installer from the command line. +Patch contributed by Rick Heil. |