Skip to content

Commit a2ec489

Browse files
authored
fix pnpm cache issue (#217)
1 parent 11b9958 commit a2ec489

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cachemanager/cachemanager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ func (c *cache) getDefaultDirs() ([]string, error) {
213213
}
214214
// if pnmpm-lock.yaml is present, cache .pnpm-store cache
215215
if d.Name() == pnpmLock {
216-
defaultDirs = append(defaultDirs, filepath.Join(c.homeDir, ".pnpm-store"))
216+
defaultDirs = append(defaultDirs, filepath.Join(c.homeDir, ".local", "share", "pnpm", "store"))
217217
return defaultDirs, nil
218218
}
219219
}

0 commit comments

Comments
 (0)