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
When running node-nightly on 32-bit version, process.arch returns "ia32" which doesn't exist anywhere in node repositories neither in the files array in node-nightly-version module.
I've fixed this for myself by modifying the index.js in node-nightly.
// line 24arch=process.arch==='ia32' ? 'x86' : process.arch,
This fixed it for me. I'm not gonna do the pull request since this can be done better. I just wanted to inform you of this issue as other people might have the same issues.
The text was updated successfully, but these errors were encountered:
When running node-nightly on 32-bit version, process.arch returns "ia32" which doesn't exist anywhere in node repositories neither in the files array in node-nightly-version module.
I've fixed this for myself by modifying the index.js in node-nightly.
This fixed it for me. I'm not gonna do the pull request since this can be done better. I just wanted to inform you of this issue as other people might have the same issues.
The text was updated successfully, but these errors were encountered: