Skip to content

Commit

Permalink
fix(plugin-workspaces-export): use relative path for cacheFolder in e…
Browse files Browse the repository at this point in the history
…xported .yarnrc.yml
  • Loading branch information
kherock committed Mar 9, 2022
1 parent 45a232d commit 4b6cce8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export default class WorkspacesExportCommand extends BaseCommand {
tmpConfiguration.values.set(`cacheFolder`, ppath.join(cacheDir, `.yarn/packages` as PortablePath));

await Configuration.updateConfiguration(cacheDir, {
cacheFolder: tmpConfiguration.get(`cacheFolder`),
cacheFolder: `.yarn/packages` as PortablePath,
enableNetwork: tmpConfiguration.get(`enableNetwork`),
enableMirror: tmpConfiguration.get(`enableMirror`),
nodeLinker,
Expand Down

0 comments on commit 4b6cce8

Please sign in to comment.