Skip to content

Commit 5475a5a

Browse files
committed
builtin completion
1 parent d86f3a2 commit 5475a5a

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
@@ -14,7 +14,7 @@ class ExternalCommand extends Command {
1414
return { shouldContinue: true };
1515
}
1616

17-
async executeCommand(commandPath, args) {
17+
executeCommand(commandPath, args) {
1818
return new Promise((resolve, reject) => {
1919
const commandDir = path.dirname(commandPath);
2020
process.env.PATH = `${commandDir}:${process.env.PATH}`;
@@ -34,6 +34,7 @@ class ExternalCommand extends Command {
3434
const output = data.toString();
3535
stdout += output;
3636
this.outputHandler.write(output, true);
37+
console.log('stdout:', output);
3738
resolve(stdout);
3839
});
3940

0 commit comments

Comments
 (0)