Commit b677b0e3 authored by mike's avatar mike

Add explicit --with statement for postgres and mysql gem groups as necessary....

Add explicit --with statement for postgres and mysql gem groups as necessary. When I followed these instructions, the first command did not install the postgres group and it had to be made explicit.
parent a792427e
...@@ -57,10 +57,10 @@ sudo -u git -H make ...@@ -57,10 +57,10 @@ sudo -u git -H make
cd /home/git/gitlab cd /home/git/gitlab
# PostgreSQL # PostgreSQL
sudo -u git -H bundle install --without development test mysql --deployment sudo -u git -H bundle install --without development test mysql --with postgres --deployment
# MySQL # MySQL
sudo -u git -H bundle install --without development test postgres --deployment sudo -u git -H bundle install --without development test postgres --with mysql --deployment
# Optional: clean up old gems # Optional: clean up old gems
sudo -u git -H bundle clean sudo -u git -H bundle clean
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment