Skip to content

Commit fc44962

Browse files
author
Alex da Franca
committed
Undo the last change quaoting the grep parameters, doesn't work. Duh!
1 parent c8c321a commit fc44962

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

CommandlineTool/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import ArgumentParser
99
import Foundation
1010
import XcresultparserLib
1111

12-
private let marketingVersion = "1.9.2"
12+
private let marketingVersion = "1.9.3"
1313

1414
struct xcresultparser: ParsableCommand {
1515
static let configuration = CommandConfiguration(

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ You should see the tool respond like this:
8787
```
8888
Error: Missing expected argument '<xcresult-file>'
8989
90-
OVERVIEW: xcresultparser 1.9.2
90+
OVERVIEW: xcresultparser 1.9.3
9191
Interpret binary .xcresult files and print summary in different formats: txt,
9292
xml, html or colored cli output.
9393

Sources/xcresultparser/JunitXML.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -409,9 +409,9 @@ private extension ActionTestSummaryGroup {
409409
let arguments = [
410410
"-E",
411411
"-rio",
412-
"--include", "'*.swift'",
413-
"--include", "'*.m'",
414-
"--include", "'*.mm'",
412+
"--include", "*.swift",
413+
"--include", "*.m",
414+
"--include", "*.mm",
415415
"^(?:public )?(?:final )?(?:public )?(?:(class|\\@implementation|struct) )[a-zA-Z0-9_]+",
416416
grepPathArgument
417417
]

0 commit comments

Comments
 (0)