Skip to content

Commit

Permalink
stdout.sync = true for rake tasks.
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellh committed Nov 14, 2011
1 parent a8909cb commit 48a6ec2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 48a6ec2

Please sign in to comment.