Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit a8a3efb

Browse files
committed
chore(Rakefile): parallelize the build on Travis
now that the forking issue is solved we can run regular build there travis-ci/travis-ci#845
1 parent e47f8d2 commit a8a3efb

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Rakefile

+1-5
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,7 @@ task :minify => [:init, :concat, :concat_scenario] do
105105
'angular-bootstrap.js',
106106
'angular-bootstrap-prettify.js'
107107
].each do |file|
108-
unless ENV['TRAVIS']
109-
fork { closure_compile(file) }
110-
else
111-
closure_compile(file)
112-
end
108+
fork { closure_compile(file) }
113109
end
114110

115111
Process.waitall

0 commit comments

Comments
 (0)