aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Minar2013-02-11 22:46:38 -0800
committerIgor Minar2013-02-14 12:52:20 -0800
commit6b8153ff0fd87afd90e2ef5c25c22c2384c9629e (patch)
tree9e91c97ff8bd6e0f56ff0640cadd86c6313424df
parentfb132732f1791632ca1a93b9bbace83563047b83 (diff)
downloadangular.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--Rakefile6
1 files changed, 1 insertions, 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