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 27 28 29 30 31 32 33
|
Description: use nodejs (not node) as executable
For more info, see:
http://lists.debian.org/debian-devel-announce/2012/07/msg00002.html
Forwarded: not-needed
Author: Marcelo Jorge Vieira <metal@alucinados.com>
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2012-12-10
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/bin/uglifyjs
+++ b/bin/uglifyjs
@@ -1,4 +1,4 @@
-#! /usr/bin/env node
+#! /usr/bin/nodejs
// -*- js -*-
"use strict";
--- a/test/run-tests.js
+++ b/test/run-tests.js
@@ -1,4 +1,4 @@
-#! /usr/bin/env node
+#! /usr/bin/nodejs
var U = require("../tools/node");
var path = require("path");
--- a/bin/extract-props.js
+++ b/bin/extract-props.js
@@ -1,4 +1,4 @@
-#! /usr/bin/env node
+#!/usr/bin/nodejs
"use strict";
|