Skip to content
This repository has been archived by the owner on Nov 21, 2018. It is now read-only.

Commit

Permalink
project.js: corrects download links
Browse files Browse the repository at this point in the history
  • Loading branch information
snostorm committed Mar 5, 2015
1 parent fcb2fb8 commit aa30a07
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions source/project.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ project.languages = [

var baseURL = `https://iojs.org/dist`;
project.current_version_downloads = [
{key: 'linux', url: `${baseURL}/${project.current_version}/iojs-${project.current_version}-linux-x64.tar.xz`},
{key: 'win32', url: `${baseURL}/${project.current_version}/iojs-${project.current_version}-x86.msi`},
{key: 'win64', url: `${baseURL}/${project.current_version}/iojs-${project.current_version}-x64.msi`},
{key: 'mac', url: `${baseURL}/${project.current_version}/iojs-${project.current_version}.pkg`},
{key: 'all', url: `${baseURL}/${project.current_version}/`}
{key: 'linux', url: `${baseURL}/v${project.current_version}/iojs-v${project.current_version}-linux-x64.tar.xz`},
{key: 'win32', url: `${baseURL}/v${project.current_version}/iojs-v${project.current_version}-x86.msi`},
{key: 'win64', url: `${baseURL}/v${project.current_version}/iojs-v${project.current_version}-x64.msi`},
{key: 'mac', url: `${baseURL}/v${project.current_version}/iojs-v${project.current_version}.pkg`},
{key: 'all', url: `${baseURL}/v${project.current_version}/`}
];
Object.defineProperty(project.current_version_downloads, 'all', {value: `${baseURL}/${project.current_version}/`});
Object.defineProperty(project.current_version_downloads, 'all', {value: `${baseURL}/v${project.current_version}/`});

module.exports = project;

0 comments on commit aa30a07

Please sign in to comment.