mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
Merge pull request #82 from mark-rushakoff/cli-reject-positional-args
Reject positional CLI arguments
This commit is contained in:
commit
af01ea7f80
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user