Print arguments when non-flag arguments were set

This commit is contained in:
Joël Stemmer 2022-03-13 23:37:56 +00:00
parent 884279de84
commit 01e84dfcf5

View File

@ -55,6 +55,7 @@ func main() {
} }
if flag.NArg() != 0 { if flag.NArg() != 0 {
fmt.Fprintf(os.Stderr, "invalid argument(s): %s\n", strings.Join(flag.Args(), " "))
fmt.Fprintf(os.Stderr, "%s does not accept positional arguments\n", os.Args[0]) fmt.Fprintf(os.Stderr, "%s does not accept positional arguments\n", os.Args[0])
flag.Usage() flag.Usage()
exitf("") exitf("")