( projectDir: string, logPrefix: string, )
| 177 | } |
| 178 | |
| 179 | export async function executeMakeCommand( |
| 180 | projectDir: string, |
| 181 | logPrefix: string, |
| 182 | ): Promise<CommandResponse> { |
| 183 | const command = ['make']; |
| 184 | return getDefaultCommandExecutor()(command, logPrefix, false, { cwd: projectDir }); |
| 185 | } |
no test coverage detected