From 6b8153ff0fd87afd90e2ef5c25c22c2384c9629e Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Mon, 11 Feb 2013 22:46:38 -0800 Subject: [PATCH] chore(Rakefile): parallelize the build on Travis now that the forking issue is solved we can run regular build there https://github.com/travis-ci/travis-ci/issues/845 --- Rakefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Rakefile b/Rakefile index e4ddd1d9..3495fc14 100644 --- a/Rakefile +++ b/Rakefile @@ -124,11 +124,7 @@ task :minify => [:init, :concat, :concat_scenario, :concat_jstd_scenario_adapter 'angular-bootstrap.js', 'angular-bootstrap-prettify.js' ].each do |file| - unless ENV['TRAVIS'] - fork { closure_compile(file) } - else - closure_compile(file) - end + fork { closure_compile(file) } end Process.waitall