Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
bluwy authored and astrobot-houston committed Jan 2, 2024
1 parent 67e06f9 commit f192fc3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/upgrade/src/actions/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ async function runInstallCommand(
const cwd = fileURLToPath(ctx.cwd);
if (ctx.packageManager === 'yarn') await ensureYarnLock({ cwd });

const installCmd = ctx.packageManager === 'yarn' || ctx.packageManager === 'pnpm' ? 'add' : 'install';
const installCmd =
ctx.packageManager === 'yarn' || ctx.packageManager === 'pnpm' ? 'add' : 'install';

await spinner({
start: `Installing dependencies with ${ctx.packageManager}...`,
Expand Down

0 comments on commit f192fc3

Please sign in to comment.