From b0f9fbc69a4c088c077bb87ce1c560b3ede31ebc Mon Sep 17 00:00:00 2001 From: Sergey Kopytov Date: Tue, 3 Sep 2019 18:56:23 +0300 Subject: [PATCH] fix missing comma --- xcode/commonFastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xcode/commonFastfile b/xcode/commonFastfile index 2ad35d9..ce68e58 100644 --- a/xcode/commonFastfile +++ b/xcode/commonFastfile @@ -366,7 +366,7 @@ def set_xcconfig_for_configuration_of_project(xcconfig_name, configuration_name, target_to_modify_selector = lambda do |t| supported_product_types = [ - Xcodeproj::Constants::PRODUCT_TYPE_UTI[:application] + Xcodeproj::Constants::PRODUCT_TYPE_UTI[:application], Xcodeproj::Constants::PRODUCT_TYPE_UTI[:app_extension] ] return !t.test_target_type? && supported_product_types.include?(t.product_type)