Skip to content

Commit

Permalink
Is version.sbt still being included...
Browse files Browse the repository at this point in the history
  • Loading branch information
rtyley committed Feb 22, 2024
1 parent f228ab5 commit 4cf1baf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cache.ts
Expand Up @@ -93,7 +93,7 @@ async function computeCacheKey(
const pattern = cacheDependencyPath
? cacheDependencyPath.trim().split('\n')
: packageManager.pattern;
const fileHash = await glob.hashFiles(pattern.join('\n'));
const fileHash = await glob.hashFiles(pattern.join('\n'), verbose = true);
if (!fileHash) {
throw new Error(
`No file in ${process.cwd()} matched to [${pattern}], make sure you have checked out the target repository`
Expand Down

0 comments on commit 4cf1baf

Please sign in to comment.