Skip to content

Commit 064c823

Browse files
committed
fix: remove link to ARMv7 from Node.js 24+ release post template
1 parent 862c078 commit 064c823

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

apps/site/scripts/release-post/downloadsTable.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,10 @@ const resolveDownloads = version => {
107107
);
108108
}
109109

110+
if (semVer.satisfies(version, '>= 24.0.0')) {
111+
downloads = downloads.filter(ver => ver.title !== 'ARMv7 32-bit Binary');
112+
}
113+
110114
return downloads;
111115
};
112116

0 commit comments

Comments
 (0)