summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authoradamdotdevin <[email protected]>2025-07-16 06:13:43 -0500
committeradamdotdevin <[email protected]>2025-07-16 06:13:43 -0500
commit6a5a4247c6fa90309629b587a20bcdbcf88981e0 (patch)
tree0346ca5b22057321346fc49bd8de314a15073a9d
parenta39136a2a0af543c7233d37a2d9594a5bb8c1fe8 (diff)
downloadopencode-6a5a4247c6fa90309629b587a20bcdbcf88981e0.tar.gz
opencode-6a5a4247c6fa90309629b587a20bcdbcf88981e0.zip
fix(gh): build
-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")