From 6dfb5452869a3447252cc89ec72d6564bdd19bda Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Sun, 28 May 2023 20:54:42 +0200 Subject: [PATCH] macOS build: do not strip (#2320) --- bin/build-python | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/build-python b/bin/build-python index 242a609cf..d0d20670f 100755 --- a/bin/build-python +++ b/bin/build-python @@ -48,6 +48,8 @@ if [ "$BUILD" = "windows" ]; then pyinstaller_args+="--i electron/build/icons/win/inkstitch.ico " pyinstaller_args+="--version-file installer_scripts/file_version_info.txt " python -m PyInstaller $pyinstaller_args inkstitch.py +elif [ "$BUILD" = "osx" ]; then + python -m PyInstaller $pyinstaller_args inkstitch.py; else python -m PyInstaller $pyinstaller_args --strip inkstitch.py; fi