Commit 2a871b7a authored by Fabio Pelosin's avatar Fabio Pelosin

[Installer] Use downcase to validate configurations

parent d0ffe31e
...@@ -18,7 +18,7 @@ GIT ...@@ -18,7 +18,7 @@ GIT
GIT GIT
remote: https://github.com/CocoaPods/Xcodeproj.git remote: https://github.com/CocoaPods/Xcodeproj.git
revision: f7e2a798464b7f4fce49379a748490a8ba83549a revision: 96d04e9f2d96b848bb36d5fe214843f8cfac2664
branch: master branch: master
specs: specs:
xcodeproj (0.18.0) xcodeproj (0.18.0)
......
...@@ -117,7 +117,6 @@ module Pod ...@@ -117,7 +117,6 @@ module Pod
install_file_references install_file_references
install_libraries install_libraries
set_target_dependencies set_target_dependencies
# note: linking with pod libraries is now done by aggregate_xcconfig's OTHER_LDFLAGS
run_post_install_hooks run_post_install_hooks
write_pod_project write_pod_project
write_lockfiles write_lockfiles
...@@ -185,7 +184,7 @@ module Pod ...@@ -185,7 +184,7 @@ module Pod
# #
def validate_build_configurations def validate_build_configurations
whitelisted_configs = pod_targets.map do |target| whitelisted_configs = pod_targets.map do |target|
target.target_definition.all_whitelisted_configurations target.target_definition.all_whitelisted_configurations.map(&:downcase)
end.flatten.uniq end.flatten.uniq
all_user_configurations = analysis_result.all_user_build_configurations.keys.map(&:downcase) all_user_configurations = analysis_result.all_user_build_configurations.keys.map(&:downcase)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment