From 48a6ec29e80ee9135e8a2e79186f0671f7f07e5f Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 13 Nov 2011 19:40:49 -0800 Subject: [PATCH] stdout.sync = true for rake tasks. --- Rakefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Rakefile b/Rakefile index 632542d835e..84ada2d5e2a 100644 --- a/Rakefile +++ b/Rakefile @@ -1,6 +1,11 @@ require 'rubygems' require 'bundler/setup' +# Immediately sync all stdout so that tools like buildbot can +# immediately load in the output. +$stdout.sync = true +$stderr.sync = true + # Load all the rake tasks from the "tasks" folder. This folder # allows us to nicely separate rake tasks into individual files # based on their role, which makes development and debugging easier