diff --git a/Rakefile b/Rakefile index 1b443e2b..069579e5 100644 --- a/Rakefile +++ b/Rakefile @@ -105,7 +105,11 @@ task :minify => [:init, :concat, :concat_scenario] do 'angular-bootstrap.js', 'angular-bootstrap-prettify.js' ].each do |file| - fork { closure_compile(file) } + unless ENV['TRAVIS'] + fork { closure_compile(file) } + else + closure_compile(file) + end end Process.waitall