From 3a7c9c39211e34f01fe6cee9f2a390a66e28dfee Mon Sep 17 00:00:00 2001 From: Jay Logan Date: Sat, 16 Sep 2017 17:19:02 -0500 Subject: [PATCH] Don't include RCs in initial setup (#397) Fixing the same issue as d9e523ec15619ebd70f5b3fd279a2541c821c12f where the command is used in Production-guide.md --- 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 b3758cec..b477786c 100644 --- a/Running-Mastodon/Production-guide.md +++ b/Running-Mastodon/Production-guide.md @@ -147,7 +147,7 @@ git clone https://github.com/tootsuite/mastodon.git live # Change directory to ~live cd ~/live # Checkout to the latest stable branch -git checkout $(git tag -l | sort -V | tail -n 1) +git checkout $(git tag -l | grep -v 'rc[0-9]*$' | sort -V | tail -n 1) # Install bundler gem install bundler # Use bundler to install the rest of the Ruby dependencies