Discard the extra node binary.

We now use atom-shell's binary to execute scripts.
This commit is contained in:
Cheng Zhao 2013-08-08 16:24:27 +08:00
parent 574811fee0
commit 317bd0debf
6 changed files with 1 additions and 117 deletions

View file

@ -87,10 +87,3 @@ def safe_mkdir(path):
except OSError as e:
if e.errno != errno.EEXIST:
raise
def get_node_path():
node = os.path.join(os.path.dirname(__file__), '..', '..', 'node', 'node')
if sys.platform == 'win32' or sys.platform == 'cygwin':
node += '.exe'
return node