Skip to content

Commit

Permalink
build: add link to applications in dmg container
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Jul 3, 2019
1 parent 34f3226 commit c198960
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
9 changes: 8 additions & 1 deletion .travis/osx_build_app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,15 @@ pip install pyinstaller
# otherwise PyPI deployment on travis-CI tries to upload *.dmg files.
pyinstaller -w -y --distpath="./dist_app" --additional-hooks-dir=".travis" $SCRIPT

# add link to Applications
mkdir ui-release
cd ui-release
ln -s /Applications
cd ..
mv ${APP} ui-release/

# create temporary DMG
hdiutil create -srcfolder "${APP}" -volname "${NAMEVERSION}" -fs HFS+ \
hdiutil create -srcfolder ui-release/ -volname "${NAMEVERSION}" -fs HFS+ \
-fsargs "-c c=64,a=16,e=16" -format UDRW "${TMP}"

# optional: edit the DMG
Expand Down
4 changes: 1 addition & 3 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
2.0.0a8
2.0.0a9
- add documentation (from Shape-Out 1)
- update macOS bundle name
2.0.0a6
- test deployment for macOS
2.0.0a1
- first preview

0 comments on commit c198960

Please sign in to comment.