summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--packages/opencode/src/cli/cmd/install-github.ts9
1 files changed, 0 insertions, 9 deletions
diff --git a/packages/opencode/src/cli/cmd/install-github.ts b/packages/opencode/src/cli/cmd/install-github.ts
index 6e60ad722..604d76a48 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")