From 0f9fa614eb4ca97658fa84ac6a016ad4671feed2 Mon Sep 17 00:00:00 2001 From: Claire Date: Tue, 10 Oct 2023 14:52:08 +0200 Subject: [PATCH] Fix installation instructions pointing to pre-releases (#1316) Fixes #1315 --- content/en/admin/install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/admin/install.md b/content/en/admin/install.md index 870ac60e..bffc3227 100644 --- a/content/en/admin/install.md +++ b/content/en/admin/install.md @@ -141,7 +141,7 @@ Use git to download the latest stable release of Mastodon: ```bash git clone https://github.com/mastodon/mastodon.git live && cd live -git checkout $(git tag -l | grep -v 'rc[0-9]*$' | sort -V | tail -n 1) +git checkout $(git tag -l | grep '^v[0-9.]*$' | sort -V | tail -n 1) ``` #### Installing the last dependencies {#installing-the-last-dependencies}