(dst string)
| 426 | } |
| 427 | |
| 428 | func outName(dst string) string { |
| 429 | if dst == "-" { |
| 430 | return "stdout" |
| 431 | } |
| 432 | if runtime.GOOS == "darwin" { |
| 433 | return fmt.Sprintf("%s (warning: sandboxed macOS binaries write to Library/Containers; use - to write to stdout and redirect to file instead)", dst) |
| 434 | } |
| 435 | return dst |
| 436 | } |
| 437 | |
| 438 | func runDebug(ctx context.Context, args []string) error { |
| 439 | if len(args) > 0 { |
no outgoing calls
no test coverage detected
searching dependent graphs…