(path, cache)
| 104 | |
| 105 | # Use file content as command line arguments, will perform shell word splitting |
| 106 | def getFileArgs(path, cache) -> List[str]: |
| 107 | files = cache.get(path) |
| 108 | if files is None: |
| 109 | files = readFileArgs(path) |
| 110 | cache[path] = files |
| 111 | return files |
| 112 | |
| 113 | |
| 114 | def filterFlags(items, fileCache): |
no test coverage detected