Find a build tool on current path or using xcrun
(toolname)
| 76 | |
| 77 | |
| 78 | def _find_build_tool(toolname): |
| 79 | """Find a build tool on current path or using xcrun""" |
| 80 | return (_find_executable(toolname) |
| 81 | or _read_output("/usr/bin/xcrun -find %s" % (toolname,)) |
| 82 | or '' |
| 83 | ) |
| 84 | |
| 85 | _SYSTEM_VERSION = None |
| 86 |
no test coverage detected
searching dependent graphs…