Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Mac/BuildScript/scripts/postflight.documentation
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ SHARE_DOCDIR_TO_FWK="../../.."
# make link in /Applications/Python m.n/ for Finder users
if [ -d "${APPDIR}" ]; then
ln -fhs "${FWK_DOCDIR}/index.html" "${APPDIR}/Python Documentation.html"
open "${APPDIR}" || true # open the applications folder
if [ "${COMMAND_LINE_INSTALL}" != 1 ]; then
open "${APPDIR}" || true # open the applications folder
fi
fi

# make share/doc link in framework for command line users
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Avoid opening Finder window if running installer from the command line.
Patch contributed by Rick Heil.