summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/build-python2
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