Skip to content

Commit f4e5e2b

Browse files
authored
fix: remove link to ARMv7 from Node.js 24+ release post template (#7734)
1 parent 071eef9 commit f4e5e2b

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)