()
| 18 | ) |
| 19 | |
| 20 | func main() { |
| 21 | fh, err := os.Create(os.Args[1]) |
| 22 | if err != nil { |
| 23 | fmt.Println(err) |
| 24 | return |
| 25 | } |
| 26 | |
| 27 | defer fh.Close() |
| 28 | |
| 29 | if err := cli.GenBashCompletion(fh, path.Base(os.Args[1])); err != nil { |
| 30 | fmt.Println(err) |
| 31 | return |
| 32 | } |
| 33 | } |
nothing calls this directly
no test coverage detected