fix: make command spawnable to fix log issue

This commit is contained in:
Nick Fields
2020-10-31 10:43:28 -04:00
parent 7a4513731b
commit 31e0097983
4 changed files with 14 additions and 18 deletions

View File

@@ -1,3 +1,3 @@
console.log('console.log test');
process.stdout.write('stdout test');
process.stderr.write('stderr test');
process.stdout.write('stdout test\n');
process.stderr.write('stderr test\n');