From 6a5a4247c6fa90309629b587a20bcdbcf88981e0 Mon Sep 17 00:00:00 2001 From: adamdotdevin <2363879+adamdottv@users.noreply.github.com> Date: Wed, 16 Jul 2025 06:13:43 -0500 Subject: [PATCH] fix(gh): build --- packages/opencode/src/cli/cmd/install-github.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/packages/opencode/src/cli/cmd/install-github.ts b/packages/opencode/src/cli/cmd/install-github.ts index 6e60ad72..604d76a4 100644 --- a/packages/opencode/src/cli/cmd/install-github.ts +++ b/packages/opencode/src/cli/cmd/install-github.ts @@ -143,15 +143,6 @@ export const InstallGithubCommand = cmd({ return model } - async function promptKey() { - const key = await prompts.password({ - message: "Enter your API key", - validate: (x) => (x.length > 0 ? undefined : "Required"), - }) - if (prompts.isCancel(key)) throw new UI.CancelledError() - return key - } - async function installGitHubApp() { const s = prompts.spinner() s.start("Installing GitHub app")