Skip to content

Commit

Permalink
Fix broken nodejs install on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
bmaltby committed Aug 21, 2015
1 parent 4f40c5f commit 8afc722
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/install_nodejs.py
Expand Up @@ -58,7 +58,7 @@ def nodejs_get_version(allow_system_node, prefix):
def nodejs_install_binary_win32(version, filename, prefix):
if filename is None:
tmpfile = '%s/Scripts/_node.exe' % prefix
final = '%s/Scripts/_node.exe' % prefix
final = '%s/Scripts/node.exe' % prefix
url = '%s/%s/node.exe' % (NODEJS_DIST, version)
download(url, tmpfile)
if os.path.exists(final):
Expand Down

0 comments on commit 8afc722

Please sign in to comment.