aboutsummaryrefslogtreecommitdiffstats
path: root/Lib/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/build.sh')
-rw-r--r--Lib/build.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/Lib/build.sh b/Lib/build.sh
index 6d03b6a..058d54f 100644
--- a/Lib/build.sh
+++ b/Lib/build.sh
@@ -1 +1,5 @@
-pyinstaller --onefile TruFont.spec
+if [ $(uname) == 'Darwin' ]; then
+ python setup.py py2app
+else
+ pyinstaller --onefile TruFont.spec
+fi