I created a Capistrano task to execute the rake command. I plan to redirect the output (STDOUT) to a file. For instance.
cap production invoke:rake TASK=mytask > out
This works, but my conclusion includes some additional Capistrano status output, for example.
00:00 invoke:rake
01 $HOME/.rbenv/bin/rbenv exec bundle exec rake mytask
...
✔ 01 ubuntu@mydomain.com 11.399s
Is there any way to suppress this?
source
share