Skip to content

Commit

Permalink
Merge pull request #3 from fasmat/fix/broken-fail-flag
Browse files Browse the repository at this point in the history
Fix broken fail flag
  • Loading branch information
fasmat authored Sep 19, 2021
2 parents fb6ae89 + b7b5664 commit feda115
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cmd/go2junit/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/urfave/cli/v2"
)

var version string = "v0.1.0"
var version string = "v0.3.1"

func main() {
app := cli.NewApp()
Expand All @@ -30,9 +30,9 @@ func main() {
Aliases: []string{"o"},
Usage: "write output to `FILE` (defaults to stdout if not set)",
},
&cli.StringFlag{
Name: "fail",
Usage: "return ",
&cli.BoolFlag{
Name: "fail",
Usage: "return with a non-zero exit status in the case a parsed test failed",
},
},
},
Expand Down

0 comments on commit feda115

Please sign in to comment.