From 175a97fc5f8884881dfeaa87dc8d19aa9371bf6b Mon Sep 17 00:00:00 2001 From: Vlad Date: Mon, 28 Dec 2020 08:30:36 +0300 Subject: [PATCH] Code correction --- xcode/commonFastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xcode/commonFastfile b/xcode/commonFastfile index 0f2f795..4feb6df 100644 --- a/xcode/commonFastfile +++ b/xcode/commonFastfile @@ -413,7 +413,7 @@ def generate_enabled_features_extension_if_needed(options) if options[:features].nil? builder_features_list = [] # If Enabled.swift exists and features option is nil we need to create empty extension to avoid unexpected features else - builder_features_list = (options[:features] || []) + builder_features_list = options[:features] .split(",").map { |feature_name| feature_name.strip } # [ "Feature1", "Feature2", "Feature3" ] end