(projectDir: string)
| 122 | } |
| 123 | |
| 124 | export function doesMakefileExist(projectDir: string): boolean { |
| 125 | return existsSync(`${projectDir}/Makefile`); |
| 126 | } |
| 127 | |
| 128 | export function doesMakeLogFileExist(projectDir: string, command: string[]): boolean { |
| 129 | const originalDir = process.cwd(); |
no test coverage detected