-
-
Notifications
You must be signed in to change notification settings - Fork 6.4k
Remove ARMv6 from releases starting v12.0.0 #2205
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
Conversation
/cc @nodejs/build |
scripts/helpers/downloads.js
Outdated
@@ -147,6 +147,11 @@ module.exports = (version) => { | |||
downloads = downloads.filter(ver => | |||
ver.title !== 'Linux 32-bit Binary' && | |||
ver.title !== 'SmartOS 32-bit Binary') | |||
} else if (semver.satisfies(version, '>= 12.0.0')) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IIUC, this condition seems unreachable since it would be caught by semver.satisfies(version, '>= 10.0.0')
in the line 146:
nodejs.org/scripts/helpers/downloads.js
Line 146 in 8216eeb
} else if (semver.satisfies(version, '>= 10.0.0')) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are right, of course. Stupid copy & paste mistake.
I refactored the download helper, PTAL.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Ref: