Skip to content

Commit c2843be

Browse files
committed
fix: avoid doubling cargo args in runnables
1 parent a97aef8 commit c2843be

File tree

1 file changed

+9
-8
lines changed
  • src/tools/rust-analyzer/editors/code/src

1 file changed

+9
-8
lines changed

src/tools/rust-analyzer/editors/code/src/tasks.ts

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import * as vscode from "vscode";
2-
import * as toolchain from "./toolchain";
32
import type { Config } from "./config";
43
import { log } from "./util";
5-
import { unwrapUndefinable } from "./undefinable";
4+
import { expectNotUndefined, unwrapUndefinable } from "./undefinable";
65

76
// This ends up as the `type` key in tasks.json. RLS also uses `cargo` and
87
// our configuration should be compatible with it so use the same key.
@@ -142,14 +141,16 @@ async function cargoToExecution(
142141
if (definition.type === TASK_TYPE) {
143142
// Check whether we must use a user-defined substitute for cargo.
144143
// Split on spaces to allow overrides like "wrapper cargo".
145-
const cargoPath = await toolchain.cargoPath();
146-
const cargoCommand = definition.overrideCargo?.split(" ") ?? [cargoPath];
144+
const cargoCommand = definition.overrideCargo?.split(" ") ?? [definition.command];
147145

148-
const args = [definition.command].concat(definition.args ?? []);
149-
const fullCommand = [...cargoCommand, ...args];
150-
const processName = unwrapUndefinable(fullCommand[0]);
146+
const definitionArgs = expectNotUndefined(
147+
definition.args,
148+
"args were not provided via runnables; this is a bug.",
149+
);
150+
const args = [...cargoCommand.slice(1), ...definitionArgs];
151+
const processName = unwrapUndefinable(cargoCommand[0]);
151152

152-
return new vscode.ProcessExecution(processName, fullCommand.slice(1), {
153+
return new vscode.ProcessExecution(processName, args, {
153154
cwd: definition.cwd,
154155
env: definition.env,
155156
});

0 commit comments

Comments
 (0)