This commit is contained in:
ruki
2025-08-21 23:00:31 +08:00
Unverified
parent 25369e4c59
commit 7e8185aa67
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -71054,7 +71054,7 @@ async function unixInstall(version) {
core.info(`cache path: ${toolDir}, key: ${cacheKey}`);
}
catch (_b) {
core.warning(`No cached files found at path "${fullCachePath}".`);
core.warning(`No cached files found at path "${fullCachePath}, key: ${cacheKey}".`);
await io.rmRF(fullCachePath);
}
}
+1 -1
View File
@@ -72,7 +72,7 @@ export async function unixInstall(version: Version): Promise<void> {
toolDir = fullCachePath;
core.info(`cache path: ${toolDir}, key: ${cacheKey}`);
} catch {
core.warning(`No cached files found at path "${fullCachePath}".`);
core.warning(`No cached files found at path "${fullCachePath}, key: ${cacheKey}".`);
await io.rmRF(fullCachePath);
}
} else {