From c7bae09eed87fe449034a8bf8e7bd79416fc9ab9 Mon Sep 17 00:00:00 2001 From: Timothy Clem Date: Mon, 30 Sep 2019 11:00:01 -0700 Subject: [PATCH] Log what the toolPath is we are looking for --- src/installer.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/installer.ts b/src/installer.ts index 1639fc2..b244509 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -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);