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 Greiling <mike@pixelcog.com>2017-01-27 23:36:52 +0300
committerMike Greiling <mike@pixelcog.com>2017-01-28 00:23:09 +0300
commit7e51cd32d3ed8bf6320b69b7976a8b10d168edba (patch)
tree148839f234a0853d837f07df13ec34f4349fa71c /doc/administration/raketasks
parent336d780d95ae30819262782e8ce079b58082a3e9 (diff)
update scripts and docs to reference the newly namespaced rake task
Diffstat (limited to 'doc/administration/raketasks')
-rw-r--r--doc/administration/raketasks/maintenance.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/administration/raketasks/maintenance.md b/doc/administration/raketasks/maintenance.md
index 33b9b28433a..5b6ee354887 100644
--- a/doc/administration/raketasks/maintenance.md
+++ b/doc/administration/raketasks/maintenance.md
@@ -172,14 +172,14 @@ Omnibus packages.
```
cd /home/git/gitlab
-sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production
+sudo -u git -H bundle exec rake gitlab:assets:compile RAILS_ENV=production
```
For omnibus versions, the unoptimized assets (JavaScript, CSS) are frozen at
the release of upstream GitLab. The omnibus version includes optimized versions
of those assets. Unless you are modifying the JavaScript / CSS code on your
production machine after installing the package, there should be no reason to redo
-rake assets:precompile on the production machine. If you suspect that assets
+rake gitlab:assets:compile on the production machine. If you suspect that assets
have been corrupted, you should reinstall the omnibus package.
## Tracking Deployments