diff options
| author | Lex Neva <github.com@lexneva.name> | 2018-08-01 13:00:03 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2018-08-01 13:00:03 -0400 |
| commit | f674ccd4e9029a26f20efcd135356549a16c3c1c (patch) | |
| tree | a28948cd5b9a127cef3b9120539ff04fe41322a6 | |
| parent | 9bb9f877639ba6c6cc6cd9c680f3198d2f61950e (diff) | |
remove inkstitch.app
| -rwxr-xr-x | bin/build-dist | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/build-dist b/bin/build-dist index 3b82e882..a96b7506 100755 --- a/bin/build-dist +++ b/bin/build-dist @@ -51,6 +51,11 @@ mkdir dist/bin mv dist/inkstitch/* dist/bin mv dist/bin dist/inkstitch +# on Mac, pyinstaller creates a .app version as well, but we don't need that +if [ "$TRAVIS_OS_NAME" = "osx" ]; then + rm -rf dist/inkstitch.app/ +fi + # Inkscape doesn't let us run native binaries as extensions(?!). Instead we # add this stub script which executes the binary that pyinstaller creates. cp stub.py dist/inkstitch.py |
