aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config/deploy.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/deploy.rb b/config/deploy.rb
index 36ceaf8a0..3474f97cb 100644
--- a/config/deploy.rb
+++ b/config/deploy.rb
@@ -95,11 +95,11 @@ namespace :deploy do
desc "Run i18n:js:export"
task :i18n_js_export do
- run "cd #{current_path} && #{rake} i18n:js:export RAILS_ENV=#{rails_env}"
+ run "cd #{current_path} && RAILS_ENV=#{rails_env} #{rake} i18n:js:export"
end
desc "Run db:seed"
task :seed do
- run "cd #{current_path} && #{rake} db:seed RAILS_ENV=#{rails_env}"
+ run "cd #{current_path} && RAILS_ENV=#{rails_env} #{rake} db:seed"
end
end