Skip to content

Commit cf26271

Browse files
Remove comment
1 parent a8aee22 commit cf26271

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

packages/features/lib/system.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ export function exec(command: string, args: string[] = [], options?: ExecOptions
2727
const shortCommand = command.split('/').slice(-1).pop() || ''
2828
const commandProcess = execa(command, args, _options)
2929

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
3230
if (isDebug && commandProcess.stdout) {
3331
commandProcess.stdout.on('data', (data: Buffer) => {
3432
console.log(colors.gray(`${colors.bold(shortCommand)}: ${data.toString()}`))

0 commit comments

Comments
 (0)