Don't include RCs in initial setup (#397)

Fixing the same issue as d9e523ec15 where the command is used in Production-guide.md
This commit is contained in:
Jay Logan 2017-09-16 17:19:02 -05:00 committed by Eugen Rochko
parent 7b840df698
commit 3a7c9c3921
1 changed files with 1 additions and 1 deletions

View File

@ -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