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:
authorChristian Mehlmauer <firefart@gmail.com>2016-02-14 12:31:28 +0300
committerChristian Mehlmauer <firefart@gmail.com>2016-02-14 12:31:28 +0300
commit7ea3bbd4e0b01b4d25a984f5e6c0471053d8874a (patch)
treed523f26bd6699a08c08c4a77e58d65f12057f50a /doc/update/8.4-to-8.5.md
parentdc3ea7eb74463c4d6576a96dc0eabd67024bd9c7 (diff)
add bundle clean to upgrade docs
Diffstat (limited to 'doc/update/8.4-to-8.5.md')
-rw-r--r--doc/update/8.4-to-8.5.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/update/8.4-to-8.5.md b/doc/update/8.4-to-8.5.md
index 42b26439848..c8083a45470 100644
--- a/doc/update/8.4-to-8.5.md
+++ b/doc/update/8.4-to-8.5.md
@@ -64,6 +64,9 @@ sudo -u git -H bundle install --without postgres development test --deployment
# PostgreSQL installations (note: the line below states '--without mysql')
sudo -u git -H bundle install --without mysql development test --deployment
+# Clean up old gems
+sudo -u git -H bundle clean
+
# Run database migrations
sudo -u git -H bundle exec rake db:migrate RAILS_ENV=production