You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
273 B

  1. var code = Number(process.argv[2]);
  2. process.stdout.write('stdout\n');
  3. process.stderr.write('stderr\n');
  4. // Use instead of process.exit to ensure stdout/stderr are flushed
  5. // before exiting in Windows (Tested in Node.js v0.8.7)
  6. require('../../lib/util/exit').exit(code);