()
| 22 | ) |
| 23 | |
| 24 | func main() { |
| 25 | cmd := envbuilderCmd() |
| 26 | err := cmd.Invoke().WithOS().Run() |
| 27 | if err != nil { |
| 28 | _, _ = fmt.Fprintf(os.Stderr, "error: %v", err) |
| 29 | os.Exit(1) |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | func envbuilderCmd() serpent.Command { |
| 34 | var o options.Options |
nothing calls this directly
no test coverage detected