Removed unnecessary extraArgs for cargo invocation

This commit is contained in:
vsrs 2020-04-30 18:53:34 +03:00
parent 10836543d6
commit 11e9e4b1fb
2 changed files with 3 additions and 6 deletions

View file

@ -84,7 +84,7 @@ async function getCppvsDebugConfig(config: ra.Runnable, sourceFileMap: Record<st
debugOutput.clear();
const cargo = new Cargo(config.cwd || '.', debugOutput);
const executable = await cargo.executableFromArgs(config.args, config.extraArgs);
const executable = await cargo.executableFromArgs(config.args);
// if we are here, there were no compilation errors.
return {