(format string, args ...interface{})
| 670 | } |
| 671 | |
| 672 | func exitf(format string, args ...interface{}) { |
| 673 | fmt.Fprintf(os.Stderr, format+"\n", args...) |
| 674 | os.Exit(1) |
| 675 | } |
| 676 | |
| 677 | func parseEnvBool(key string) bool { |
| 678 | raw := strings.TrimSpace(os.Getenv(key)) |
no outgoing calls
no test coverage detected