diff options
| -rw-r--r-- | config/deploy.rb | 2 | ||||
| -rw-r--r-- | lib/tasks/ci.rake | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/config/deploy.rb b/config/deploy.rb index 4ab888e92..fdd0b1d1d 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -24,7 +24,7 @@ require "bundler/capistrano" require 'whenever/capistrano' require 'capistrano/npm' -set :npm_options, '--production --silent --no-progress' +set :npm_options, '--production --no-progress' after 'deploy:finalize_update', 'npm:install' diff --git a/lib/tasks/ci.rake b/lib/tasks/ci.rake index d9828ae15..90e47560e 100644 --- a/lib/tasks/ci.rake +++ b/lib/tasks/ci.rake @@ -3,7 +3,7 @@ namespace :ci do task :setup do cp "config/database/jenkins.yml", "config/database.yml" sh "RAILS_ENV=test rake db:migrate" - sh "npm install" + sh "npm --production --no-progress install" end def git_branch |
