(path string)
| 368 | } |
| 369 | |
| 370 | func pathExists(path string) bool { |
| 371 | _, err := os.Stat(path) |
| 372 | return err == nil |
| 373 | } |
| 374 | |
| 375 | func binaryExists(name string) bool { |
| 376 | _, err := exec.LookPath(name) |
no outgoing calls
no test coverage detected
searching dependent graphs…