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

Ignore 'InputFile' errors from xcodebuild.

parent 986d437b
......@@ -332,7 +332,11 @@ module Pod
#
# For more details see https://github.com/CocoaPods/CocoaPods/issues/2394#issuecomment-56658587
#
if message.include?('error: ') && !message.include?("'InputFile' should have")
if message.include?("'InputFile' should have")
next
end
if message.include?('error: ')
error "[xcodebuild] #{message}"
else
note "[xcodebuild] #{message}"
......
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