fix: regression w/ auth login where stderr was ignored instead of inherited (#25529)
This commit is contained in:
@@ -318,6 +318,7 @@ export const ProvidersLoginCommand = effectCmd({
|
|||||||
prompts.log.info(`Running \`${wellknown.auth.command.join(" ")}\``)
|
prompts.log.info(`Running \`${wellknown.auth.command.join(" ")}\``)
|
||||||
const proc = Process.spawn(wellknown.auth.command, {
|
const proc = Process.spawn(wellknown.auth.command, {
|
||||||
stdout: "pipe",
|
stdout: "pipe",
|
||||||
|
stderr: "inherit",
|
||||||
})
|
})
|
||||||
if (!proc.stdout) {
|
if (!proc.stdout) {
|
||||||
prompts.log.error("Failed")
|
prompts.log.error("Failed")
|
||||||
|
|||||||
Reference in New Issue
Block a user