diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2023-05-28 20:54:42 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-28 20:54:42 +0200 |
| commit | 6dfb5452869a3447252cc89ec72d6564bdd19bda (patch) | |
| tree | ec2796273a911fac4612948e3b982c954c0c48d4 /bin | |
| parent | c95a28270d81ed7246a85a701956d2dde1866f60 (diff) | |
macOS build: do not strip (#2320)
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/build-python | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/build-python b/bin/build-python index 242a609c..d0d20670 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 |
