23 lines
745 B
Diff
23 lines
745 B
Diff
diff --git third_party/node/node.py third_party/node/node.py
|
|
index 8097e2c49..10e6a16ea 100755
|
|
--- third_party/node/node.py
|
|
+++ third_party/node/node.py
|
|
@@ -10,11 +10,12 @@ import sys
|
|
|
|
|
|
def GetBinaryPath():
|
|
- return os_path.join(os_path.dirname(__file__), *{
|
|
- 'Darwin': ('mac', 'node-darwin-x64', 'bin', 'node'),
|
|
- 'Linux': ('linux', 'node-linux-x64', 'bin', 'node'),
|
|
- 'Windows': ('win', 'node.exe'),
|
|
- }[platform.system()])
|
|
+ return "/usr/bin/node"
|
|
+ #return os_path.join(os_path.dirname(__file__), *{
|
|
+ # 'Darwin': ('mac', 'node-darwin-x64', 'bin', 'node'),
|
|
+ # 'Linux': ('linux', 'node-linux-x64', 'bin', 'node'),
|
|
+ # 'Windows': ('win', 'node.exe'),
|
|
+ #}[platform.system()])
|
|
|
|
|
|
def RunNode(cmd_parts, stdout=None):
|