From cf9033498bf9d63d06eaac028b809917345a5024 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 1 Jul 2022 10:00:38 +0200 Subject: [PATCH] Fix icon nad bundle identifier in spec file icon and bundle_identifier already contain quotes CURA-9365 --- Ultimaker-Cura.spec.jinja | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ultimaker-Cura.spec.jinja b/Ultimaker-Cura.spec.jinja index f2adefc1ef..494f5858d5 100644 --- a/Ultimaker-Cura.spec.jinja +++ b/Ultimaker-Cura.spec.jinja @@ -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 %}