Last active
August 29, 2015 14:24
-
-
Save MartijnR/1d8eb935acf5b2fc5b9a to your computer and use it in GitHub Desktop.
node-libxslt build error
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Vagrant.configure("2") do |config| | |
config.vm.box = "trusty" | |
config.vm.box_url = "ubuntu/trusty64" | |
config.vm.provision "shell", inline: <<-SHELL | |
curl -sL https://deb.nodesource.com/setup_0.10 | sudo bash - | |
apt-get install -y git build-essential nodejs | |
npm explore npm -g -- npm install node-gyp@latest | |
npm install libxslt | |
SHELL | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment