diff options
| author | Igor Minar | 2013-02-11 22:46:38 -0800 |
|---|---|---|
| committer | Igor Minar | 2013-02-14 12:46:19 -0800 |
| commit | a8a3efb5f0b010ec1d4853a3c4f7cbdaf58af1c5 (patch) | |
| tree | 371f2973f5b9f9cf50f256ceecb954a9fa11301f | |
| parent | e47f8d2b9660527d7a62eb3e56a3e4f7f1c272f1 (diff) | |
| download | angular.js-a8a3efb5f0b010ec1d4853a3c4f7cbdaf58af1c5.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
@@ -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 |
