From a8a3efb5f0b010ec1d4853a3c4f7cbdaf58af1c5 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Mon, 11 Feb 2013 22:46:38 -0800 Subject: 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 069579e5..1b443e2b 100644 --- a/Rakefile +++ b/Rakefile @@ -105,11 +105,7 @@ task :minify => [:init, :concat, :concat_scenario] do '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 -- cgit v1.2.3