diff options
author | Mike Greiling <mike@pixelcog.com> | 2017-01-27 14:36:52 -0600 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2017-01-27 15:23:09 -0600 |
commit | 7e51cd32d3ed8bf6320b69b7976a8b10d168edba (patch) | |
tree | 148839f234a0853d837f07df13ec34f4349fa71c /lib | |
parent | 336d780d95ae30819262782e8ce079b58082a3e9 (diff) | |
download | gitlab-ce-7e51cd32d3ed8bf6320b69b7976a8b10d168edba.tar.gz |
update scripts and docs to reference the newly namespaced rake taskrelative-url-assets
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/upgrader.rb | 2 | ||||
-rwxr-xr-x | lib/support/deploy/deploy.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/gitlab/upgrader.rb b/lib/gitlab/upgrader.rb index f3567f3ef85..e78d0c34a02 100644 --- a/lib/gitlab/upgrader.rb +++ b/lib/gitlab/upgrader.rb @@ -61,7 +61,7 @@ module Gitlab "Switch to new version" => %W(#{Gitlab.config.git.bin_path} checkout v#{latest_version}), "Install gems" => %W(bundle), "Migrate DB" => %W(bundle exec rake db:migrate), - "Recompile assets" => %W(bundle exec rake assets:clean assets:precompile), + "Recompile assets" => %W(bundle exec rake gitlab:assets:clean gitlab:assets:compile), "Clear cache" => %W(bundle exec rake cache:clear) } end diff --git a/lib/support/deploy/deploy.sh b/lib/support/deploy/deploy.sh index adea4c7a747..ab46c47d8f5 100755 --- a/lib/support/deploy/deploy.sh +++ b/lib/support/deploy/deploy.sh @@ -31,8 +31,8 @@ echo 'Deploy: Bundle and migrate' sudo -u git -H bundle --without aws development test mysql --deployment sudo -u git -H bundle exec rake db:migrate RAILS_ENV=production -sudo -u git -H bundle exec rake assets:clean RAILS_ENV=production -sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production +sudo -u git -H bundle exec rake gitlab:assets:clean RAILS_ENV=production +sudo -u git -H bundle exec rake gitlab:assets:compile RAILS_ENV=production sudo -u git -H bundle exec rake cache:clear RAILS_ENV=production # return stashed changes (if necessary) |