1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
Description: rename node to nodejs in shebang
Forwarded: not-needed
--- a/bin/tap.js
+++ b/bin/tap.js
@@ -1,4 +1,4 @@
-#!/usr/bin/env node
+#!/usr/bin/env nodejs
var argv = process.argv.slice(2)
, path = require("path")
--- a/bin/tap-http.js
+++ b/bin/tap-http.js
@@ -1,4 +1,4 @@
-#!/usr/bin/env node
+#!/usr/bin/env nodejs
// just an example, really
// Run with `node tap-http.js path/to/tests/`
--- a/bin/tap-reader.js
+++ b/bin/tap-reader.js
@@ -1,4 +1,4 @@
-#!/usr/bin/env node
+#!/usr/bin/env nodejs
// read a tap stream from stdin.
|