Commit dc82976f authored by Boris Bügling's avatar Boris Bügling

Filter the `ld` warnings regarding frameworks.

Since we now have our own error for this, it should be filtered,
especially considering that it might be confusing for people linting
with `--use-frameworks`.
parent 978e77b3
...@@ -508,7 +508,7 @@ module Pod ...@@ -508,7 +508,7 @@ module Pod
def parse_xcodebuild_output(output) def parse_xcodebuild_output(output)
lines = output.split("\n") lines = output.split("\n")
selected_lines = lines.select do |l| selected_lines = lines.select do |l|
l.include?('error: ') && l.include?('error: ') && (l !~ /frameworks only run on iOS 8/) &&
(l !~ /errors? generated\./) && (l !~ /error: \(null\)/) || (l !~ /errors? generated\./) && (l !~ /error: \(null\)/) ||
l.include?('warning: ') && (l !~ /warnings? generated\./) || l.include?('warning: ') && (l !~ /warnings? generated\./) ||
l.include?('note: ') && (l !~ /expanded from macro/) l.include?('note: ') && (l !~ /expanded from macro/)
......
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