Skip to content

Commit

Permalink
Fix message
Browse files Browse the repository at this point in the history
  • Loading branch information
bigdaz committed Dec 13, 2023
1 parent 6ca54e3 commit 8602a10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cache-base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,13 +148,13 @@ export class GradleStateCache {
const resolvedPaths = rawPaths.map(x => path.resolve(this.gradleUserHome, x))

for (const p of resolvedPaths) {
cacheDebug(`Deleting excluded path: ${p}`)
cacheDebug(`Removing excluded path: ${p}`)
const globber = await glob.create(p, {
implicitDescendants: false
})

for (const toDelete of await globber.glob()) {
cacheDebug(`Deleting excluded file: ${toDelete}`)
cacheDebug(`Removing excluded file: ${toDelete}`)
await tryDelete(toDelete)
}
}
Expand Down

0 comments on commit 8602a10

Please # to comment.