Skip to content
Snippets Groups Projects
Commit a91298ca authored by Muxi Yan's avatar Muxi Yan
Browse files

Update post_install condition and comments

parent 47564de0
No related branches found
No related tags found
No related merge requests found
...@@ -84,9 +84,9 @@ post_install do |installer| ...@@ -84,9 +84,9 @@ post_install do |installer|
end end
# CocoaPods creates duplicated library targets of gRPC-Core when the test targets include # CocoaPods creates duplicated library targets of gRPC-Core when the test targets include
# non-default subspecs of gRPC-Core. All of these library targets start with prefix 'gRPC-Core.' # non-default subspecs of gRPC-Core. All of these library targets start with prefix 'gRPC-Core'
# and require the same error suppresion. # and require the same error suppresion.
if target.name == 'gRPC-Core' or target.name.start_with?('gRPC-Core.') or target.name.start_with?('gRPC-Core-') if target.name.start_with?('gRPC-Core')
target.build_configurations.each do |config| target.build_configurations.each do |config|
# TODO(zyc): Remove this setting after the issue is resolved # TODO(zyc): Remove this setting after the issue is resolved
# GPR_UNREACHABLE_CODE causes "Control may reach end of non-void # GPR_UNREACHABLE_CODE causes "Control may reach end of non-void
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment