diff options
| author | Aiden Cline <[email protected]> | 2026-05-02 22:36:02 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-05-02 22:36:02 -0500 |
| commit | 8e016b4703a37dadaafc5de0a1ba17176b1a06a0 (patch) | |
| tree | b4c76d1827356838426822c880861fc54ea0d4a4 | |
| parent | b89d48a2a45520c6b3cb451a7860a5c2d6cab6ff (diff) | |
| download | opencode-8e016b4703a37dadaafc5de0a1ba17176b1a06a0.tar.gz opencode-8e016b4703a37dadaafc5de0a1ba17176b1a06a0.zip | |
fix: regression w/ auth login where stderr was ignored instead of inherited (#25529)
| -rw-r--r-- | packages/opencode/src/cli/cmd/providers.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/opencode/src/cli/cmd/providers.ts b/packages/opencode/src/cli/cmd/providers.ts index 71e03c7e7..3dce55d32 100644 --- a/packages/opencode/src/cli/cmd/providers.ts +++ b/packages/opencode/src/cli/cmd/providers.ts @@ -318,6 +318,7 @@ export const ProvidersLoginCommand = effectCmd({ prompts.log.info(`Running \`${wellknown.auth.command.join(" ")}\``) const proc = Process.spawn(wellknown.auth.command, { stdout: "pipe", + stderr: "inherit", }) if (!proc.stdout) { prompts.log.error("Failed") |
