Skip to content

Commit

Permalink
Trying new pyinstaller specs to debug binary build
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Blumberg committed Sep 14, 2019
1 parent 7497cd9 commit 5bc9f22
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions runsharp/SHARPpy-osx.spec
Expand Up @@ -57,10 +57,10 @@ exe = EXE(pyz,
a.zipfiles,
a.datas,
name='SHARPpy',
debug=False,
debug=True,
strip=None,
upx=True,
console=False )
console=True )

app = BUNDLE(exe,
name='SHARPpy.app',
Expand Down
4 changes: 2 additions & 2 deletions runsharp/SHARPpy-win7-64.spec
Expand Up @@ -62,10 +62,10 @@ exe = EXE(pyz,
a.zipfiles,
a.datas,
name='SHARPpy.exe',
debug=False,
debug=True,
strip=None,
upx=True,
console=False, icon='icons\\SHARPpy.ico')
console=True, icon='icons\\SHARPpy.ico')

# Revert the _version.py file to its original version using git
import subprocess
Expand Down

0 comments on commit 5bc9f22

Please sign in to comment.