forked from mirrors/gecko-dev
Bug 1838444 - mach should print the command that fails as it was typed and not use python's array syntax. r=sylvestre
Differential Revision: https://phabricator.services.mozilla.com/D180944
This commit is contained in:
parent
9b58b3e4c9
commit
d2553e6eba
1 changed files with 1 additions and 1 deletions
|
|
@ -598,7 +598,7 @@ To see more help for a specific command, run:
|
||||||
def _print_error_header(self, argv, fh):
|
def _print_error_header(self, argv, fh):
|
||||||
fh.write("Error running mach:\n\n")
|
fh.write("Error running mach:\n\n")
|
||||||
fh.write(" ")
|
fh.write(" ")
|
||||||
fh.write(repr(argv))
|
fh.write("mach " + " ".join(argv))
|
||||||
fh.write("\n\n")
|
fh.write("\n\n")
|
||||||
|
|
||||||
def _print_exception(self, fh, exc_type, exc_value, stack, sentry_event_id=None):
|
def _print_exception(self, fh, exc_type, exc_value, stack, sentry_event_id=None):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue