From 97e00a50c1c1d2851e2977ce5d261be34a828816 Mon Sep 17 00:00:00 2001 From: Anton Troshin Date: Mon, 18 Nov 2024 19:26:53 -0600 Subject: [PATCH] build Signed-off-by: Anton Troshin --- dist/setup/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dist/setup/index.js b/dist/setup/index.js index 3266f92..b9bd4ed 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -88390,6 +88390,7 @@ function cacheWindowsDir(extPath, tool, version, arch) { if (!cacheDirectoryPaths) { throw new Error(`Could not get cache folder paths.`); } + core.info(`Found Cache Directory Paths: ${cacheDirectoryPaths}`); // replace cache directory path with actual cache directory path const actualCacheDirectoryPaths = cacheDirectoryPaths.map(path => { return { @@ -88400,6 +88401,7 @@ function cacheWindowsDir(extPath, tool, version, arch) { // iterate through actual cache directory paths and make links for (const cachePath of actualCacheDirectoryPaths) { if (!fs_1.default.existsSync(cachePath.actualPath)) { + core.info(`Creating directory ${cachePath.actualPath}`); fs_1.default.mkdirSync(path.dirname(cachePath.actualPath), { recursive: true }); } fs_1.default.symlinkSync(cachePath.actualPath, cachePath.defaultPath, 'junction');