summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2017-02-16 00:20:42 -0600
committerMike Greiling <mike@pixelcog.com>2017-02-16 00:20:42 -0600
commiteca18c0bd108033d1e852b2ce8010ee01c259528 (patch)
tree50ebd70042c89d8e1edeea5f6e02f5d673e13b3f
parent9b885e92f31a8756a4e0e221dddb9625d0e76bce (diff)
downloadgitlab-ce-eca18c0bd108033d1e852b2ce8010ee01c259528.tar.gz
add yarn:install to upgrader script
-rw-r--r--lib/gitlab/upgrader.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/upgrader.rb b/lib/gitlab/upgrader.rb
index e78d0c34a02..632f663094c 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 gitlab:assets:clean gitlab:assets:compile),
+ "Recompile assets" => %W(bundle exec rake yarn:install gitlab:assets:clean gitlab:assets:compile),
"Clear cache" => %W(bundle exec rake cache:clear)
}
end