()
| 202 | } |
| 203 | |
| 204 | func arch() string { |
| 205 | out := runtime.GOARCH |
| 206 | if rosetta.Enabled() { |
| 207 | out += " (rosetta)" |
| 208 | } |
| 209 | return out |
| 210 | } |
| 211 | |
| 212 | func runVersion(ctx context.Context, dockerCLI command.Cli, opts *versionOptions) error { |
| 213 | var err error |
no test coverage detected
searching dependent graphs…