Merge pull request #82 from mark-rushakoff/cli-reject-positional-args

Reject positional CLI arguments
This commit is contained in:
Joël Stemmer 2019-01-06 14:48:39 +00:00 committed by GitHub
commit af01ea7f80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,6 +26,11 @@ func init() {
func main() {
flag.Parse()
if flag.NArg() != 0 {
fmt.Println("go-junit-report does not accept positional arguments")
os.Exit(1)
}
// Read input
report, err := parser.Parse(os.Stdin, packageName)
if err != nil {