You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
E.g. the NodeJS v16.14.0 shipped with Visual Studio 2022 is 32 bit and returns for os.arch() the value "ia32". This breaks in makeReleaseName() of utils.js, where for the "win32" platform only the values "x32" and "x64" are checked. According to the NodeJS documentation, os.arch() never returns "x32", only "ia32".
E.g. the NodeJS v16.14.0 shipped with Visual Studio 2022 is 32 bit and returns for
os.arch()
the value"ia32"
. This breaks in makeReleaseName() of utils.js, where for the"win32"
platform only the values"x32"
and"x64"
are checked. According to the NodeJS documentation,os.arch()
never returns"x32"
, only"ia32"
.This is trivially fixed by modifying the check:
The text was updated successfully, but these errors were encountered: