summaryrefslogtreecommitdiff
path: root/tools/install.py
diff options
context:
space:
mode:
authorFrederic Hemberger <mail@frederic-hemberger.de>2015-08-20 10:53:38 -0400
committercjihrig <cjihrig@gmail.com>2015-08-23 17:59:43 -0400
commit45a2046f5d73c019978d3659706367b7d28f0279 (patch)
tree1b8b59a70fa6b92774bc30b354673b969eb7f506 /tools/install.py
parenta69ab27ab458385d24676792b75ad1c25b8c30e5 (diff)
downloadnode-new-45a2046f5d73c019978d3659706367b7d28f0279.tar.gz
installer: fix installers for node.js rename
This commit completes the io.js to Node.js rename in the Windows installer. Fixes: https://github.com/nodejs/node/issues/2418 PR-URL: https://github.com/nodejs/node/pull/2367 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: João Reis <reis@janeasystems.com>
Diffstat (limited to 'tools/install.py')
-rwxr-xr-xtools/install.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/tools/install.py b/tools/install.py
index dda11a1493..ff460bbc0f 100755
--- a/tools/install.py
+++ b/tools/install.py
@@ -132,17 +132,6 @@ def files(action):
exeext = '.exe' if is_windows else ''
action(['out/Release/node' + exeext], 'bin/node' + exeext)
- if not is_windows:
- # Install iojs -> node compatibility symlink.
- link_target = 'bin/node'
- link_path = abspath(install_path, link_target)
- if action == uninstall:
- action([link_path], link_target)
- elif action == install:
- try_symlink('iojs', link_path)
- else:
- assert(0) # Unhandled action type.
-
if 'true' == variables.get('node_use_dtrace'):
action(['out/Release/node.d'], 'lib/dtrace/node.d')