Skip to content

Instantly share code, notes, and snippets.

@gianlucacandiotti
Created December 13, 2016 04:51
Show Gist options
  • Save gianlucacandiotti/32e176cd5f3f4b8fe13cca45652ec97a to your computer and use it in GitHub Desktop.
Save gianlucacandiotti/32e176cd5f3f4b8fe13cca45652ec97a to your computer and use it in GitHub Desktop.
Vagrant shell provisioning - Yarn
#!/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