Skip to content

Commit

Permalink
Simplified build spec.
Browse files Browse the repository at this point in the history
  • Loading branch information
fyl00 committed Apr 21, 2017
1 parent 8f5f788 commit 93511ea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions mac.spec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ block_cipher = None


a = Analysis(['app.py'],
pathex=['/Users/SlowWalker/Documents/Code/Project/xiamilist/github'],
pathex=[],
binaries=None,
datas=[],
hiddenimports=['queue'],
Expand All @@ -29,11 +29,11 @@ exe = EXE(pyz,
strip=False,
upx=True,
console=False ,
icon='/Users/SlowWalker/Documents/Code/Project/xiamilist/github/static/favicon.ico')
icon='static/favicon.ico')

app = BUNDLE(exe,
name='XiamiList.app',
icon='/Users/SlowWalker/Documents/Code/Project/xiamilist/github/static/app.icns',
icon='static/app.icns',
bundle_identifier=None,
info_plist={
'NSHighResolutionCapable': 'True'
Expand Down
4 changes: 2 additions & 2 deletions windows.spec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ block_cipher = None


a = Analysis(['app.py'],
pathex=['E:\\Code\\Python\\ExportXiamiList'],
pathex=[],
binaries=None,
datas=[],
hiddenimports=[],
Expand All @@ -26,4 +26,4 @@ exe = EXE(pyz,
strip=False,
upx=True,
console=False ,
icon='E:\\Code\\Python\\ExportXiamiList\\static\\favicon.ico')
icon='static/favicon.ico')

0 comments on commit 93511ea

Please sign in to comment.