Skip to content

Commit

Permalink
fix pnpm cache issue (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
VikrantKS committed Jul 8, 2022
1 parent 11b9958 commit a2ec489
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cachemanager/cachemanager.go
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ func (c *cache) getDefaultDirs() ([]string, error) {
}
// if pnmpm-lock.yaml is present, cache .pnpm-store cache
if d.Name() == pnpmLock {
defaultDirs = append(defaultDirs, filepath.Join(c.homeDir, ".pnpm-store"))
defaultDirs = append(defaultDirs, filepath.Join(c.homeDir, ".local", "share", "pnpm", "store"))
return defaultDirs, nil
}
}
Expand Down

0 comments on commit a2ec489

Please sign in to comment.