From: Patrick Doyle Date: 2008-10-23T00:13:59+09:00 Subject: Re: Rake "sh" does not echo command ------=_Part_23174_26003558.1224688532856 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline I always add: # I like to see the shell commands as they are executed verbose(true) to my rakefiles. You can also do things like: vebose(true) do sh this_verbose_command end or verbose(false) do sh that_quiet_command end The default is not to echo the commands. My Makefile heritage finds this odd, but now that I've figured out how to get around it, it's not so odd anymore. There might even be a .rakerc file somewhere I could add that to. Hmmm... if not, then perhaps I have finally come up with an idea that I could implement and contribute back. --wpd ------=_Part_23174_26003558.1224688532856--