ruby - Suppress rake in directory message -
When I run rake
, it always starts with a message like this:
& gt; Rake (in / users / peter / srcdir) ... here standard output ...
I want to remove (in / users / peter / srcdir)
Part You can do it with rake -s
, but then you do not get the output you want.
Is there a way to disable this existing directory announcement, but not the rest? Ideally, some configuration files like ~ /. Rakerc will be
, or there will be an option in Rakefile
.
does not look like -:
puts "(# Dir.pwd} "Until options.silent
you can try to request it on it.
Comments
Post a Comment