lint and build

Signed-off-by: Anton Troshin <anton@diagrid.io>
This commit is contained in:
Anton Troshin 2024-11-19 12:09:58 -06:00
parent 0dc6404f6a
commit 6cd0eaadd6
No known key found for this signature in database
GPG key ID: 9F8A96ACA9EB6363
2 changed files with 15 additions and 5 deletions

View file

@ -240,7 +240,7 @@ async function cacheWindowsDir(
} else {
core.info(`Directory ${cachePath.actualPath} already exists`);
// make sure the link is pointing to the actual cache directory
let symlinkTarget = fs.readlinkSync(cachePath.defaultPath);
const symlinkTarget = fs.readlinkSync(cachePath.defaultPath);
if (symlinkTarget !== "") {
core.info(`Found link ${cachePath.defaultPath} => ${symlinkTarget}`);
} else {