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
parent b89d48a2a4
commit 8e016b4703

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