Created
December 13, 2016 04:51
-
-
Save gianlucacandiotti/32e176cd5f3f4b8fe13cca45652ec97a to your computer and use it in GitHub Desktop.
Vagrant shell provisioning - Yarn
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
#!/bin/bash | |
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - | |
echo "deb http://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list | |
sudo apt-get update && sudo apt-get install yarn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment