diff options
| author | Igor Minar | 2013-02-11 22:46:38 -0800 |
|---|---|---|
| committer | Igor Minar | 2013-02-14 12:52:20 -0800 |
| commit | 6b8153ff0fd87afd90e2ef5c25c22c2384c9629e (patch) | |
| tree | 9e91c97ff8bd6e0f56ff0640cadd86c6313424df | |
| parent | fb132732f1791632ca1a93b9bbace83563047b83 (diff) | |
| download | angular.js-6b8153ff0fd87afd90e2ef5c25c22c2384c9629e.tar.bz2 | |
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
| -rw-r--r-- | Rakefile | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -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 |
