You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When aborting rake with Ctrl+C, it outputs rake aborted! then dumps a long backtrace. This seems unnecessary, as aborting isn't really an unexpected outcome of pressing Ctrl+C (or sending an INT signal).
I'd like to propose catching the Interrupt exception and exiting cleanly (with an exit code of 1). We can still print the backtrace if the --trace option is used.
I can submit a pull request, if this seems reasonable.
The text was updated successfully, but these errors were encountered:
When aborting
rake
with Ctrl+C, it outputsrake aborted!
then dumps a long backtrace. This seems unnecessary, as aborting isn't really an unexpected outcome of pressing Ctrl+C (or sending an INT signal).I'd like to propose catching the
Interrupt
exception and exiting cleanly (with an exit code of 1). We can still print the backtrace if the--trace
option is used.I can submit a pull request, if this seems reasonable.
The text was updated successfully, but these errors were encountered: