From b2ad3f504b04d782162d7d5d3bf6a9e00cfddef9 Mon Sep 17 00:00:00 2001 From: Alexander Hornung Date: Thu, 5 Feb 2026 13:09:28 +1100 Subject: [PATCH] Remove unnecessary comments --- src/install-pnpm/index.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/install-pnpm/index.ts b/src/install-pnpm/index.ts index 55ed739..aa1a3a6 100644 --- a/src/install-pnpm/index.ts +++ b/src/install-pnpm/index.ts @@ -9,11 +9,8 @@ const execAsync = promisify(exec); export async function install(inputs: Inputs) { try { await execAsync("pnpm --version"); - // pnpm already installed return; - } catch { - // pnpm not installed, continue - } + } catch {} startGroup("Running self-installer..."); const status = await runSelfInstaller(inputs);