When I run rake
, it always starts with a message like this:
> rake
(in /Users/peter/srcdir)
... standard output here ...
I'd like to remove the (in /Users/peter/srcdir)
portion. You can do it with rake -s
, but then you don't get the output you want.
Is there any way to disable this current directory announcement but not the rest? Ideal would be some configuration file like ~/.rakerc
, or an option in the Rakefile
itself.