diff options
| author | Lex Neva <github.com@lexneva.name> | 2019-04-12 16:52:11 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2019-04-12 16:52:11 -0400 |
| commit | 785e3798c46a00ccbde89c0aeee95140dfbe6d92 (patch) | |
| tree | 6733e6040d49a55faf566470dbe320afd10d6be6 | |
| parent | 5b5cde330fd21289fcdce7f43d37c54b7cc73310 (diff) | |
mac one is in a different spot
| -rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 \ |
