From 7b0895772784a5b1469d211e16ed550382675638 Mon Sep 17 00:00:00 2001 From: Claire Date: Mon, 9 Oct 2023 13:33:10 +0200 Subject: [PATCH] Fix installation instructions pointing to pre-releases 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}