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