We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5de580e commit 83eb1cfCopy full SHA for 83eb1cf
app/OutputHandler.js
@@ -47,10 +47,8 @@ class OutputHandler {
47
} else if (this.fileInitialized && this.writeToFile) {
48
// If not appending, clear the file
49
fs.writeFileSync(this.outputFile, content);
50
- } else {
51
- // Fall back to console
52
- process.stdout.write(content);
53
- }
+ }
+ process.stdout.write(content);
54
} else {
55
const stream = this.isStderr ? process.stderr : process.stdout;
56
if (this.outputFile) {
foo2.md
@@ -1 +0,0 @@
1
-cat: nonexistent: No such file or directory
0 commit comments