Skip to content

Commit fe1e5ca

Browse files
committed
Fix lack of --icon.
1 parent ebe7721 commit fe1e5ca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

syrup/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def build(ctx, do_clean, version, name, company, description, license, icon, bui
7474
executables=executable,
7575
version=version,
7676
icon=icon, license=license,
77-
icon_path=os.path.join(build_dir, icon),
77+
icon_path=os.path.join(build_dir, icon) if icon else None,
7878
name=name, company=company,
7979
description=description,
8080
help_url=help_url, update_url=update_url, website_url=website_url,

0 commit comments

Comments
 (0)