Print usage on flag error

This commit is contained in:
Joël Stemmer 2019-10-04 00:05:01 +01:00
parent f79a156ed8
commit 27e2e8f782

View File

@ -20,7 +20,8 @@ func main() {
flag.Parse()
if flag.NArg() != 0 {
fmt.Println("go-junit-report does not accept positional arguments")
fmt.Fprintf(os.Stderr, "%s does not accept positional arguments\n", os.Args[0])
flag.Usage()
os.Exit(1)
}