Skip to content

Commit

Permalink
Fixed icons path and permissions issue with installing python.app
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Blumberg committed Jan 22, 2019
1 parent 1563b55 commit c0d2c45
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ steps:
# Must use sudo for python-dependent stuff because conda permissions have
# stupid bug under macOS.
- script: |
conda install -y -c conda-forge python.app
sudo conda install -y -q -c conda-forge python.app
system_profiler SPDisplaysDataType | grep Resolution # Check display dimensions using OS tools
sudo python ci/screen.py # Check display dimensions as seen by PySide
sudo python setup.py -q install
Expand Down
2 changes: 1 addition & 1 deletion runsharp/SHARPpy-osx.spec
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ exe = EXE(pyz,

app = BUNDLE(exe,
name='SHARPpy.app',
icon='runsharp/icons/SHARPpy.icns',
icon='icons/SHARPpy.icns',
info_plist={
'NSPrincipalClass': 'NSApplication',
'NSHighResolutionCapable': 'True',
Expand Down
2 changes: 1 addition & 1 deletion runsharp/SHARPpy-win7-64.spec
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ exe = EXE(pyz,
debug=False,
strip=None,
upx=True,
console=False, icon='runsharp\\icons\\SHARPpy.ico')
console=False, icon='icons\\SHARPpy.ico')

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

0 comments on commit c0d2c45

Please sign in to comment.