Skip to content

Commit 6b8153f

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 fb13273 commit 6b8153f

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Rakefile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -124,11 +124,7 @@ task :minify => [:init, :concat, :concat_scenario, :concat_jstd_scenario_adapter
124124
'angular-bootstrap.js',
125125
'angular-bootstrap-prettify.js'
126126
].each do |file|
127-
unless ENV['TRAVIS']
128-
fork { closure_compile(file) }
129-
else
130-
closure_compile(file)
131-
end
127+
fork { closure_compile(file) }
132128
end
133129

134130
Process.waitall

0 commit comments

Comments
 (0)