Skip to content

Commit e49d08b

Browse files
author
Marcin Olek
committed
fix for XCode 8.3 beta, the build log now can contain more than one decimal digit
1 parent 696804d commit e49d08b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

BuildTimeAnalyzer/LogProcessor.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ extension LogProcessorProtocol {
3434
private func process(text: String) {
3535
let characterSet = CharacterSet(charactersIn:"\r\"")
3636
var remainingRange = text.startIndex..<text.endIndex
37-
let regex = try! NSRegularExpression(pattern: "^\\d*\\.?\\dms\\t/", options: [])
37+
let regex = try! NSRegularExpression(pattern: "^\\d*\\.?\\d*ms\\t/", options: [])
3838

3939
rawMeasures.removeAll()
4040

0 commit comments

Comments
 (0)