summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4433c00f..d9d05bf6 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,11 @@ dist: locales inx
cp -a icons dist/inkstitch/bin
cp -a locales dist/inkstitch/bin
cp -a print dist/inkstitch/bin
- cp -a electron/dist/*-unpacked dist/inkstitch/electron
+ if [ "$$BUILD" = "osx" ]; then \
+ cp -a electron/dist/mac dist/inkstitch/electron; \
+ else \
+ cp -a electron/dist/*-unpacked dist/inkstitch/electron; \
+ fi
if [ "$$BUILD" = "windows" ]; then \
cd dist; zip -r ../inkstitch-$(VERSION)-win32.zip *; \
else \