We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c54e48 commit 16a783eCopy full SHA for 16a783e
src/workspaces.py
@@ -260,7 +260,8 @@ def install(args) -> None:
260
print("install packages")
261
# much faster special case
262
# see https://github.com/pnpm/pnpm/issues/6778 for why we put that confirm option in
263
- c = "cd packages && pnpm install --config.confirmModulesPurge=false"
+ # for the package-import-method, needed on zfs!, see https://github.com/pnpm/pnpm/issues/7024
264
+ c = "cd packages && pnpm install --config.confirmModulesPurge=false --package-import-method=clone-or-copy"
265
if args.prod:
266
args.dist_only = False
267
args.node_modules_only = True
0 commit comments