summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Canaris <bluwy@users.noreply.github.com> 2024-01-02 14:53:17 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2024-01-02 14:53:17 +0000
commitf192fc3a35872cb187cf631c62fa5b44f004242b (patch)
tree1e374bba149d5f186f724b63ee8973094458a1fb
parent67e06f9db1b0492ccfb4b053762dc91d69a53ecb (diff)
downloadastro-f192fc3a35872cb187cf631c62fa5b44f004242b.tar.gz
astro-f192fc3a35872cb187cf631c62fa5b44f004242b.tar.zst
astro-f192fc3a35872cb187cf631c62fa5b44f004242b.zip
[ci] format
-rw-r--r--packages/upgrade/src/actions/install.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/upgrade/src/actions/install.ts b/packages/upgrade/src/actions/install.ts
index 14011a07e..3c294a8ee 100644
--- a/packages/upgrade/src/actions/install.ts
+++ b/packages/upgrade/src/actions/install.ts
@@ -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}...`,