Bug 1067037 - Split debugger arguments passed through --debugger-args. r=ted

This commit is contained in:
Alessio Placitelli 2014-09-23 08:11:00 -04:00
parent 4aa1784298
commit 870033d7ca

View File

@ -123,7 +123,7 @@ def get_debugger_info(debugger, debuggerArgs = None, debuggerInteractive = False
# Extend the default arguments for the chosen debugger with the ones passed in, if any.
if debuggerArgs:
# Append the provided debugger arguments at the end of the arguments list.
debugger_arguments += [debuggerArgs];
debugger_arguments += debuggerArgs.split()
# Override the default debugger interactive mode if needed.
debugger_interactive = get_debugger_info('interactive', False)