stdout.sync = true for rake tasks.
This commit is contained in:
parent
a8909cbb0b
commit
48a6ec29e8
5
Rakefile
5
Rakefile
|
@ -1,6 +1,11 @@
|
||||||
require 'rubygems'
|
require 'rubygems'
|
||||||
require 'bundler/setup'
|
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
|
# Load all the rake tasks from the "tasks" folder. This folder
|
||||||
# allows us to nicely separate rake tasks into individual files
|
# allows us to nicely separate rake tasks into individual files
|
||||||
# based on their role, which makes development and debugging easier
|
# based on their role, which makes development and debugging easier
|
||||||
|
|
Loading…
Reference in New Issue