diff --git a/Rakefile b/Rakefile index 3495fc144df1..e4ddd1d9d2ee 100644 --- a/Rakefile +++ b/Rakefile @@ -124,7 +124,11 @@ task :minify => [:init, :concat, :concat_scenario, :concat_jstd_scenario_adapter 'angular-bootstrap.js', 'angular-bootstrap-prettify.js' ].each do |file| - fork { closure_compile(file) } + unless ENV['TRAVIS'] + fork { closure_compile(file) } + else + closure_compile(file) + end end Process.waitall