Skip to content

Commit

Permalink
Merge pull request #57 from marcinolek/master
Browse files Browse the repository at this point in the history
fix for XCode 8.3 beta, the build log now can contain more than one d…
  • Loading branch information
Robert Gummesson authored Feb 2, 2017
2 parents 696804d + e49d08b commit d063df3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BuildTimeAnalyzer/LogProcessor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ extension LogProcessorProtocol {
private func process(text: String) {
let characterSet = CharacterSet(charactersIn:"\r\"")
var remainingRange = text.startIndex..<text.endIndex
let regex = try! NSRegularExpression(pattern: "^\\d*\\.?\\dms\\t/", options: [])
let regex = try! NSRegularExpression(pattern: "^\\d*\\.?\\d*ms\\t/", options: [])

rawMeasures.removeAll()

Expand Down

0 comments on commit d063df3

Please sign in to comment.