diff options
author | Alfredo Sumaran <alfredo@gitlab.com> | 2017-02-16 21:34:01 +0000 |
---|---|---|
committer | Alfredo Sumaran <alfredo@gitlab.com> | 2017-02-16 21:34:01 +0000 |
commit | cee957f56c60649949da72a9ea01b2f6e7b0eb56 (patch) | |
tree | 66b8d593f2fbaddb3b78154d03e91b4481ccb1b5 /lib | |
parent | 0cfc83651d4eba9f4b832e5edd62bbbb7b63c213 (diff) | |
parent | e25f1a0a85e703acf417d92048bf9628c6b39ee9 (diff) | |
download | gitlab-ce-cee957f56c60649949da72a9ea01b2f6e7b0eb56.tar.gz |
Merge branch 'fix-8.17-upgrade-process' into 'master'
Fix 8.17 upgrade documentation
Closes #28021
See merge request !9285
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/upgrader.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/gitlab/upgrader.rb b/lib/gitlab/upgrader.rb index e78d0c34a02..7fd4935191c 100644 --- a/lib/gitlab/upgrader.rb +++ b/lib/gitlab/upgrader.rb @@ -60,6 +60,7 @@ module Gitlab "Get latest code" => %W(#{Gitlab.config.git.bin_path} fetch), "Switch to new version" => %W(#{Gitlab.config.git.bin_path} checkout v#{latest_version}), "Install gems" => %W(bundle), + "Install node modules" => %W(npm install --production), "Migrate DB" => %W(bundle exec rake db:migrate), "Recompile assets" => %W(bundle exec rake gitlab:assets:clean gitlab:assets:compile), "Clear cache" => %W(bundle exec rake cache:clear) |