fix: regression w/ auth login where stderr was ignored instead of inherited (#25529)

This commit is contained in:
Aiden Cline 2026-05-02 22:36:02 -05:00 committed by GitHub
commit 8e016b4703
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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")