(folder: string, filePath: string)
| 645 | } |
| 646 | |
| 647 | private containsFile(folder: string, filePath: string): boolean { |
| 648 | const fullPath = path.join(folder, filePath); |
| 649 | return existsAndIsFileSync(fullPath); |
| 650 | } |
| 651 | |
| 652 | public searchPaths(paths: string[], executableFilename: string, postFilter?: (s: string) => boolean): SdkSearchResults { |
| 653 | this.logger.info(`Searching for ${executableFilename}`); |
no test coverage detected