We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2a55bb commit 93909afCopy full SHA for 93909af
CHANGELOG
@@ -66,3 +66,4 @@ June 18, 2011 - v0.2.0
66
June 15, 2011 - v0.1.0
67
68
* Initial release
69
+
src/cli/node.js
@@ -9,7 +9,10 @@ var fs = require("fs"),
9
cli({
10
args: process.argv.slice(2),
11
12
- print: console.log,
+ print: function(message){
13
+ fs.writeSync(1, message + "\n");
14
+ fs.fsyncSync(1);
15
+ },
16
17
quit: function(code){
18
process.exit(code || 0);
0 commit comments