Support extra arguments when running with --debug.

This commit is contained in:
Josh Matthews 2021-03-05 19:43:33 -05:00 committed by GitHub
parent c220d886c2
commit 3b0b810093
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -162,7 +162,7 @@ class PostBuildCommands(CommandBase):
command = rustCommand
# Prepend the debugger args.
args = ([command] + self.debuggerInfo.args
args = ([command] + self.debuggerInfo.args + ["--"]
+ args + params)
else:
args = args + params