Skip to content

Commit d44dfb2

Browse files
committed
builtin completion
1 parent 9135a42 commit d44dfb2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/ExternalCommand.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ class ExternalCommand extends Command {
1212
async execute(args) {
1313
try {
1414
await this.executeCommand(this.commandPath, args);
15+
conso
1516
} catch (error) {
1617
}
1718
return { shouldContinue: true };
@@ -50,7 +51,7 @@ class ExternalCommand extends Command {
5051
});
5152

5253
child.on('close', (code) => {
53-
console.log(`Child process exited with code ${code}`);
54+
console.log('error', {stderr, stdout});
5455
if (code === 0) {
5556
resolve({ stdout, stderr });
5657
} else {

0 commit comments

Comments
 (0)