diff options
| author | Luc Donnet | 2018-02-09 20:22:37 +0100 | 
|---|---|---|
| committer | Luc Donnet | 2018-02-09 20:23:08 +0100 | 
| commit | 038ecf8c41dc11087b63fc9b569f795051aec9df (patch) | |
| tree | d5a3d866bccbb990315ca7ba0dce9b5b66bf6d9a | |
| parent | f1067f0a3af9b1e801f01f57b3a010cb849c6794 (diff) | |
| download | chouette-core-038ecf8c41dc11087b63fc9b569f795051aec9df.tar.bz2 | |
Fix in deploy.rb task i18n_js_export call
| -rw-r--r-- | config/deploy.rb | 4 | 
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 | 
