aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Rakefile6
1 files changed, 5 insertions, 1 deletions
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