(dst string, v []byte)
| 418 | } |
| 419 | |
| 420 | func writeProfile(dst string, v []byte) error { |
| 421 | if dst == "-" { |
| 422 | _, err := Stdout.Write(v) |
| 423 | return err |
| 424 | } |
| 425 | return os.WriteFile(dst, v, 0600) |
| 426 | } |
| 427 | |
| 428 | func outName(dst string) string { |
| 429 | if dst == "-" { |