Skip to content

Commit f82cf61

Browse files
committed
stdio:inherit when using Coana for fixes
1 parent 66ec978 commit f82cf61

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/commands/fix/coana-fix.mts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export async function coanaFix(
105105
...fixConfig.unknownFlags,
106106
],
107107
fixConfig.orgSlug,
108-
{ cwd, spinner },
108+
{ cwd, spinner, stdio: 'inherit' },
109109
)
110110
spinner?.stop()
111111
return fixCResult.ok ? { ok: true, data: { fixed: true } } : fixCResult
@@ -125,7 +125,7 @@ export async function coanaFix(
125125
...fixConfig.unknownFlags,
126126
],
127127
fixConfig.orgSlug,
128-
{ cwd, spinner },
128+
{ cwd, spinner, stdio: 'inherit' },
129129
)
130130
if (foundCResult.ok) {
131131
const foundIds = cmdFlagValueToArray(
@@ -178,7 +178,7 @@ export async function coanaFix(
178178
...fixConfig.unknownFlags,
179179
],
180180
fixConfig.orgSlug,
181-
{ cwd, spinner },
181+
{ cwd, spinner, stdio: 'inherit' },
182182
)
183183

184184
if (!fixCResult.ok) {

0 commit comments

Comments
 (0)