Fix icon nad bundle identifier in spec file

icon and bundle_identifier already contain quotes

CURA-9365
This commit is contained in:
c.lamboo 2022-07-01 10:00:38 +02:00
parent 0580814352
commit cf9033498b

View file

@ -63,6 +63,6 @@ coll = COLLECT(
{% if macos == true %}app = BUNDLE(
coll,
name='{{ name }}.app',
icon='{{ icon }}',
bundle_identifier='{{ osx_bundle_identifier }}'
icon={{ icon }},
bundle_identifier={{ osx_bundle_identifier }}
){% endif %}