From 41ace3a9e53b52b4271554d7aedd88d533ee5f5e Mon Sep 17 00:00:00 2001 From: rejbasket <39080670+rejbasket@users.noreply.github.com> Date: Wed, 8 Dec 2021 22:18:41 +0100 Subject: add macOS and windows installer (#1352) --- bin/build-python | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'bin/build-python') diff --git a/bin/build-python b/bin/build-python index 88e166ae..5d16cdf8 100755 --- a/bin/build-python +++ b/bin/build-python @@ -36,6 +36,16 @@ pyinstaller_args+="-p inkscape/share/extensions " # output useful debugging info that helps us trace library dependency issues pyinstaller_args+="--log-level DEBUG " +# This adds bundle identifier in reverse DSN format for macos +if [ "$BUILD" = "osx" ]; then + pyinstaller_args+="--osx-bundle-identifier org.inkstitch.app " + if [[ -z ${GITHUB_REF} ]]; then + : + else + bash bin/import-macos-keys + fi +fi + if [ "$BUILD" = "windows" ]; then python -m PyInstaller $pyinstaller_args inkstitch.py else -- cgit v1.2.3