From 1e98a53c85949b91a579574ecf4c77ad3fe88de3 Mon Sep 17 00:00:00 2001 From: Mathias B <10813340+mathias-b@users.noreply.github.com> Date: Sat, 19 Aug 2017 18:58:57 +0200 Subject: [PATCH] Move curl installation (#380) Curl need to be installed before the first time we use it. It's now installed before setting up nodejs repository. --- Running-Mastodon/Production-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Running-Mastodon/Production-guide.md b/Running-Mastodon/Production-guide.md index f786a8a9..76f4c0da 100644 --- a/Running-Mastodon/Production-guide.md +++ b/Running-Mastodon/Production-guide.md @@ -53,6 +53,7 @@ You will need to add an external repository so we can have the version of [node. We run this script to add the repository: ```sh +apt -y install curl curl -sL https://deb.nodesource.com/setup_6.x | bash - ``` @@ -65,7 +66,6 @@ Another repository needs to be added so we can get the version of [Yarn](https:/ This is how you add the repository: ```sh -apt -y install curl 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 apt update