Skip to content

Commit e5166f2

Browse files
committed
Lint nit
1 parent b6b7b0b commit e5166f2

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

src/commands/fix/pnpm-fix.ts

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)