Code correction

This commit is contained in:
Vlad 2020-12-28 08:30:36 +03:00
parent a042e43450
commit 175a97fc5f
1 changed files with 1 additions and 1 deletions

View File

@ -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