-
Notifications
You must be signed in to change notification settings - Fork 397
node global installation process failure #131
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
Comments
Is there any way to detect if |
For apt-get you could do this: if [ $(dpkg-query -W -f='${Status}' libcairo2-dev 2>/dev/null | grep -c "ok installed") -eq 0 ];
then
sudo apt-get install libcairo2-dev
fi |
I have created PR to continue discussion and test global installation. I changed pre install script as @Rayman suggested and got the error following. you can checkout node_global_fix branch and test it too.
|
This should be fixed with #178, since the installation no longer requires |
Update AUTHORS.md
follow up from #127
npm version 0.9.0 Testing.
local installation
works fine.
global installation
It seems like preinstall process causing problems.
The text was updated successfully, but these errors were encountered: