File: fix-node-path.patch

package info (click to toggle)
coffeescript 2.7.0%2Bdfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,368 kB
  • sloc: makefile: 20; xml: 9; javascript: 5; sh: 1
file content (22 lines) | stat: -rw-r--r-- 452 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Description: fix node path
Author: Xavier Guimard <yadd@debian.org>
Forwarded: not-needed
Last-Update: 2019-01-07
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/bin/cake
+++ b/bin/cake
@@ -1,4 +1,4 @@
-#!/usr/bin/env node
+#!/usr/bin/node
 
 try {
   new Function('var {a} = {a: 1}')();
--- a/bin/coffee
+++ b/bin/coffee
@@ -1,4 +1,4 @@
-#!/usr/bin/env node
+#!/usr/bin/node
 
 try {
   new Function('var {a} = {a: 1}')();