Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormike <github@ravuya.com>2016-04-28 01:03:20 +0300
committermike <github@ravuya.com>2016-04-28 01:03:20 +0300
commitb677b0e33a04ead7edaad5ee528c915980b1c283 (patch)
tree5c6f9589c86382d83f752afe2fb318eee46c6a45 /doc/update
parenta792427eed95570da22844a06a09227730443189 (diff)
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.md4
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