-
Notifications
You must be signed in to change notification settings - Fork 641
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
Bitcoin download script stops installation on unsupported platform #488
Comments
Braydonf posted a fix for this week's ago but never merged it. On Linux i686 platforms, the installation exists with me error. This is the link to the pull request. |
I wish you could edit a comment. "On Linux i686 platforms, the installation exists with *no error" |
@kreshendo this is not the issue I am referring to. That PR fixes that there is no error message for unsupported architecture. |
@ivoaz did you get to install on FreeBSD? I'm still trying. |
@xipher0 I removed 22nd line in scripts/download file and set sed -i.bak -e '22d' scripts/download
export SKIP_BITCOIN_DOWNLOAD=1 |
When trying to run
npm install
on a platform that is not supported by Bitcoin download script, it stops the installation. Since the platform check is in the beginning of the script,SKIP_BITCOIN_DOWNLOAD
variable does not help.Here's the output when trying to run
npm install
on a FreeBSD with a manually compiled Bitcoin:I think the platform check should be inside the download function or just exit with a non-error code when not supported.
I can work on a fix if this is indeed a bug.
The text was updated successfully, but these errors were encountered: