Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/src/run.ts')
| -rw-r--r-- | editors/code/src/run.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/editors/code/src/run.ts b/editors/code/src/run.ts index 97dab8d9f6..849e915cca 100644 --- a/editors/code/src/run.ts +++ b/editors/code/src/run.ts @@ -165,9 +165,6 @@ export async function createTaskFromRunnable( export function createCargoArgs(runnableArgs: ra.CargoRunnableArgs): string[] { const args = [...runnableArgs.cargoArgs]; // should be a copy! - if (runnableArgs.cargoExtraArgs) { - args.push(...runnableArgs.cargoExtraArgs); // Append user-specified cargo options. - } if (runnableArgs.executableArgs.length > 0) { args.push("--", ...runnableArgs.executableArgs); } |