File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -237,7 +237,10 @@ export async function pnpmFix(
237237 // eslint-disable-next-line no-await-in-loop
238238 await editablePkgJson . save ( )
239239 // eslint-disable-next-line no-await-in-loop
240- await runAgentInstall ( pkgEnvDetails , { spinner } )
240+ await runAgentInstall ( pkgEnvDetails , {
241+ args : [ '--no-frozen-lockfile' ] ,
242+ spinner
243+ } )
241244
242245 if ( test ) {
243246 spinner ?. info ( `Testing ${ fixSpec } ` )
@@ -292,7 +295,10 @@ export async function pnpmFix(
292295 // eslint-disable-next-line no-await-in-loop
293296 await editablePkgJson . save ( )
294297 // eslint-disable-next-line no-await-in-loop
295- await runAgentInstall ( pkgEnvDetails , { spinner } )
298+ await runAgentInstall ( pkgEnvDetails , {
299+ args : [ '--no-frozen-lockfile' ] ,
300+ spinner
301+ } )
296302 spinner ?. stop ( )
297303 logger . error ( `Failed to fix ${ oldSpec } ` )
298304 }
You can’t perform that action at this time.
0 commit comments