We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8aee22 commit cf26271Copy full SHA for cf26271
packages/features/lib/system.ts
@@ -27,8 +27,6 @@ export function exec(command: string, args: string[] = [], options?: ExecOptions
27
const shortCommand = command.split('/').slice(-1).pop() || ''
28
const commandProcess = execa(command, args, _options)
29
30
- // Only attach debug event handlers if we're in debug mode
31
- // Note: We use .pipe() to avoid consuming the data and preventing capture
32
if (isDebug && commandProcess.stdout) {
33
commandProcess.stdout.on('data', (data: Buffer) => {
34
console.log(colors.gray(`${colors.bold(shortCommand)}: ${data.toString()}`))
0 commit comments