Skip to content

Commit

Permalink
iconutil -> /usr/bin/iconutil
Browse files Browse the repository at this point in the history
  • Loading branch information
ink-splatters committed Dec 24, 2024
1 parent 7f811a9 commit 6499069
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1648,7 +1648,7 @@ def create_macos_app_icon(where: str = 'Resources') -> None:
icns_dir = os.path.join(where, f'{appname}.icns')
try:
subprocess.check_call([
'iconutil', '-c', 'icns', iconset_dir, '-o', icns_dir
'/usr/bin/iconutil', '-c', 'icns', iconset_dir, '-o', icns_dir
])
except FileNotFoundError:
print(f'{error("iconutil not found")}, using png2icns (without retina support) to convert the logo', file=sys.stderr)
Expand Down

0 comments on commit 6499069

Please sign in to comment.