Skip to content
This repository has been archived by the owner on Apr 30, 2021. It is now read-only.

Commit

Permalink
Merge pull request #30 from yanokwa/relative-icons
Browse files Browse the repository at this point in the history
pyinstaller 3.5 supports relative paths and Windows build requires it
  • Loading branch information
yanokwa authored Aug 12, 2019
2 parents d7a8297 + 2d3fdb6 commit 01d56ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/xlsform-offline-mac.spec
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ coll = COLLECT(exe,
)
app = BUNDLE(coll,
name='ODK XLSForm Offline.app',
icon='pkg/icon.icns',
icon='icon.icns',
info_plist={ 'NSHighResolutionCapable': 'True' }
)
2 changes: 1 addition & 1 deletion pkg/xlsform-offline-win.spec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ exe = EXE(pyz,
[('pyxform\\validators\\odk_validate\\bin\\ODK_Validate.jar', validate_path, 'DATA')],
[('pyxform\\iana_subtags.txt', iana_path, 'DATA')],
name='ODK XLSForm Offline.exe',
icon='pkg\\icon.ico',
icon='icon.ico',
upx=True,
console=False
)

0 comments on commit 01d56ac

Please sign in to comment.