diff options
author | mike <github@ravuya.com> | 2016-04-27 16:03:20 -0600 |
---|---|---|
committer | mike <github@ravuya.com> | 2016-04-27 16:03:20 -0600 |
commit | b677b0e33a04ead7edaad5ee528c915980b1c283 (patch) | |
tree | 5c6f9589c86382d83f752afe2fb318eee46c6a45 /doc/update | |
parent | a792427eed95570da22844a06a09227730443189 (diff) | |
download | gitlab-ce-b677b0e33a04ead7edaad5ee528c915980b1c283.tar.gz |
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.
Diffstat (limited to 'doc/update')
-rw-r--r-- | doc/update/patch_versions.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/update/patch_versions.md b/doc/update/patch_versions.md index f446ed0a35b..bca570b28b9 100644 --- a/doc/update/patch_versions.md +++ b/doc/update/patch_versions.md @@ -57,10 +57,10 @@ sudo -u git -H make cd /home/git/gitlab # 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 -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 sudo -u git -H bundle clean |