Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

download windows x64 .msi files from x64/ for 0.x.x #78

Closed
wants to merge 1 commit into from

Conversation

rvagg
Copy link
Member

@rvagg rvagg commented Sep 2, 2015

I haven't actually tested this works at all but windows 64-bit files for 0.x.x need to be prefixed with x64/, because reasons, so the big download button on the front page is giving a dead link for those visitors

@@ -14,7 +14,7 @@
db.innerText = dlLocal + ' OS X (x64)';
break;
case 'Win':
db.href += 'node-' + version + '-' + x + '.msi';
db.href += (version[0] == '0' && x == 'x64' ? x + '/' : '') + 'node-' + version + '-' + x + '.msi';
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Version is prefixed with 'v', so it must be version[1]. LGTM otherwise.

@fhemberger
Copy link
Contributor

Merged with 3cdb522 and 045fae2.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants