File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed
Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -258,12 +258,16 @@ export async function pnpmFix(
258258 const commitMsg = `fix: upgrade ${ name } to ${ targetVersion } `
259259 const { owner, repo } = getRepoInfo ( )
260260 // eslint-disable-next-line no-await-in-loop
261- await spawn ( 'git' , [
262- 'remote' ,
263- 'set-url' ,
264- 'origin' ,
265- `https://x-access-token:${ process . env [ 'SOCKET_AUTOFIX_PAT' ] } @github.com/${ owner } /${ repo } `
266- ] , { cwd } )
261+ await spawn (
262+ 'git' ,
263+ [
264+ 'remote' ,
265+ 'set-url' ,
266+ 'origin' ,
267+ `https://x-access-token:${ process . env [ 'SOCKET_AUTOFIX_PAT' ] } @github.com/${ owner } /${ repo } `
268+ ] ,
269+ { cwd }
270+ )
267271 // eslint-disable-next-line no-await-in-loop
268272 await commitAndPushFix ( branchName , commitMsg , cwd )
269273 // eslint-disable-next-line no-await-in-loop
You can’t perform that action at this time.
0 commit comments