Bug 1487244 - Remove mach's --debug-command argument before starting Raptor, r=gbrown.

This commit is contained in:
Bob Clary 2018-08-30 19:04:46 -07:00
parent 7aed758f49
commit 1155dedeb1

View File

@ -167,6 +167,10 @@ class MachRaptor(MachCommandBase):
if not verify_android_device(build_obj, install=True, app=kwargs['binary']):
return 1
debug_command = '--debug-command'
if debug_command in sys.argv:
sys.argv.remove(debug_command)
raptor = self._spawn(RaptorRunner)
try: