From 7c9e7e833a57590de5146a94d07801110ef7bce9 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Thu, 12 Jun 2014 09:36:24 -0400 Subject: [PATCH] Unbuffer $stdout --- lib/rscons.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/rscons.rb b/lib/rscons.rb index 826bab1..70c2963 100644 --- a/lib/rscons.rb +++ b/lib/rscons.rb @@ -84,3 +84,6 @@ module Rscons end end end + +# Unbuffer $stdout +$stdout.sync = true