Skip to content
Snippets Groups Projects
Commit 1dde272a authored by Mike Greiling's avatar Mike Greiling
Browse files

fix yarn installation

parent ba95510c
No related branches found
No related tags found
1 merge request!24Fix yarn installation
Loading
Loading
@@ -2,7 +2,10 @@
 
set -xeo pipefail
 
curl --silent --location https://deb.nodesource.com/setup_7.x | bash -
apt-get install -y nodejs
# add official debian repos for node and yarn
curl -sS -L https://deb.nodesource.com/setup_7.x | bash -
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
 
curl -o- -L https://yarnpkg.com/install.sh | bash
apt-get update
apt-get install -y nodejs yarn
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment