Skip to content
Snippets Groups Projects
Commit c2013e7f authored by Jacob Schatz's avatar Jacob Schatz
Browse files

Merge branch 'fix-yarn-dependency' into 'master'

Fix yarn installation

Closes #7

See merge request !24
parents ba95510c 1dde272a
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