(rootDirectory)
| 78 | |
| 79 | |
| 80 | def findAllSwiftFiles(rootDirectory): |
| 81 | output = subprocess.check_output( |
| 82 | ["find", "-H", rootDirectory, "-name", "*.swift"], universal_newlines=True |
| 83 | ) |
| 84 | return [os.path.realpath(l) for l in output.splitlines()] |
| 85 | |
| 86 | |
| 87 | def cmd_split(s): |
no outgoing calls
no test coverage detected