Skip to content

Commit

Permalink
fix for XCode 8.3 beta, the build log now can contain more than one d…
Browse files Browse the repository at this point in the history
…ecimal digit
  • Loading branch information
Marcin Olek committed Feb 2, 2017
1 parent 696804d commit e49d08b
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 e49d08b

Please sign in to comment.