Log what the toolPath is we are looking for

This commit is contained in:
Timothy Clem
2019-09-30 11:00:01 -07:00
parent 5e34fe46eb
commit c7bae09eed

View File

@@ -32,6 +32,7 @@ export async function _findHaskellToolVersion(
}
const toolPath: string = path.join(baseInstallDir, tool, version, 'bin');
core.info(`Looking in ${toolPath}`);
if (fs.existsSync(toolPath)) {
core.debug(`Found tool in cache ${tool} ${version}`);
core.addPath(toolPath);