We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 020d670 commit d3695a1Copy full SHA for d3695a1
lib/xcode_summary/plugin.rb
@@ -200,7 +200,8 @@ def errors(xcode_summary)
200
201
def parse_location(input)
202
file_path, line, _column = input[:file_path].split(':')
203
- Location.new(input[:file_name], file_path, line.to_i)
+ file_name = relative_path(file_path)
204
+ Location.new(file_name, file_path, line.to_i)
205
end
206
207
def parse_test_location(failure)
0 commit comments