documentation update

This commit is contained in:
Aparna Jyothi 2025-06-09 13:20:47 +05:30
parent cfd17d94f5
commit 6090563d91
3 changed files with 18 additions and 14 deletions

View file

@ -42,13 +42,15 @@ export async function cacheDependencies(cache: string, pythonVersion: string) {
`The resolved cache-dependency-path does not exist: ${sourcePath}`
);
} else {
try {
fs.copyFileSync(sourcePath, targetPath);
core.info(`Copied ${sourcePath} to ${targetPath}`);
} catch (error) {
core.warning(
`Failed to copy file from ${sourcePath} to ${targetPath}: ${error}`
);
if (sourcePath !== targetPath) {
try {
fs.copyFileSync(sourcePath, targetPath);
core.info(`Copied ${sourcePath} to ${targetPath}`);
} catch (error) {
core.warning(
`Failed to copy file from ${sourcePath} to ${targetPath}: ${error}`
);
}
}
}