Skip to content

Update links for AIX and Linux on Z downloads #940

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

Merged
merged 1 commit into from
Oct 27, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions layouts/partials/secondary-download-matrix.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@

<tr>
<th>Linux on System z</th>
<td colspan="6"><a href="http://www.ibm.com/developerworks/web/nodesdk/">Download (Unofficial, provided by IBM)</a></td>
<td colspan="6"><a href="https://nodejs.org/dist/{{version.node}}/node-{{version.node}}-linux-s390x.tar.xz">64-bit</a></td>
</tr>
<tr>
<th>AIX on Power Systems</th>
<td colspan="6"><a href="http://www.ibm.com/developerworks/web/nodesdk/">Download (Unofficial, provided by IBM)</a></td>
<td colspan="6"><a href="https://nodejs.org/dist/{{version.node}}/node-{{version.node}}-aix-ppc64.tar.gz">64-bit</a></td>
</tr>
</tbody>
</table>
Expand Down
12 changes: 12 additions & 0 deletions scripts/helpers/downloads.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,18 @@ const postMergeDownloads = [
'title': 'Linux PPC LE 64-bit Binary',
'templateUrl': 'https://nodejs.org/dist/v%version%/node-v%version%-linux-ppc64le.tar.xz'
},
{
'title': 'Linux PPC BE 64-bit Binary',
'templateUrl': 'https://nodejs.org/dist/v%version%/node-v%version%-linux-ppc64.tar.xz'
},
{
'title': 'Linux s390x 64-bit Binary',
'templateUrl': 'https://nodejs.org/dist/v%version%/node-v%version%-linux-s390x.tar.xz'
},
{
'title': 'AIX 64-bit Binary',
'templateUrl': 'https://nodejs.org/dist/v%version%/node-v%version%-aix-ppc64.tar.gz'
},
{
'title': 'SunOS 32-bit Binary',
'templateUrl': 'https://nodejs.org/dist/v%version%/node-v%version%-sunos-x86.tar.xz'
Expand Down