Master in licard-dev #10

Merged
bogdan.terehov merged 323 commits from merge_master_in_licard_dev into licard-dev 2023-09-04 19:22:24 +03:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 175a97fc5f - Show all commits

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