(ctx context.Context, err error, c *cli.Command, command string)
| 57 | } |
| 58 | |
| 59 | func errorQuitWithHelpMessage(ctx context.Context, err error, c *cli.Command, command string) { |
| 60 | displayError(ctx, err) |
| 61 | fmt.Print("\n") |
| 62 | _ = cli.ShowCommandHelp(ctx, c, command) |
| 63 | |
| 64 | os.Exit(1) |
| 65 | } |
| 66 | |
| 67 | func errorQuit(ctx context.Context, err error) { |
| 68 | displayError(ctx, err) |
no test coverage detected