Remove working dir from cacheDependencyGlob error message (#162)

Since https://github.com/astral-sh/setup-uv/pull/160 we allow searching
everywhere
This commit is contained in:
Kevin Stillhammer
2024-11-23 12:03:08 +01:00
committed by GitHub
parent 9b71657bb2
commit 691a091485
3 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ async function computeKeys(version: string): Promise<string> {
cacheDependencyPathHash += await hashFiles(cacheDependencyGlob, true);
if (cacheDependencyPathHash === "-") {
throw new Error(
`No file in ${process.cwd()} matched to [${cacheDependencyGlob.split("\n").join(",")}], make sure you have checked out the target repository`,
`No file matched to [${cacheDependencyGlob.split("\n").join(",")}], make sure you have checked out the target repository`,
);
}
} else {