|
1 | 1 | import * as vscode from "vscode";
|
2 |
| -import * as toolchain from "./toolchain"; |
3 | 2 | import type { Config } from "./config";
|
4 | 3 | import { log } from "./util";
|
5 |
| -import { unwrapUndefinable } from "./undefinable"; |
| 4 | +import { expectNotUndefined, unwrapUndefinable } from "./undefinable"; |
6 | 5 |
|
7 | 6 | // This ends up as the `type` key in tasks.json. RLS also uses `cargo` and
|
8 | 7 | // our configuration should be compatible with it so use the same key.
|
@@ -142,14 +141,16 @@ async function cargoToExecution(
|
142 | 141 | if (definition.type === TASK_TYPE) {
|
143 | 142 | // Check whether we must use a user-defined substitute for cargo.
|
144 | 143 | // 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]; |
147 | 145 |
|
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]); |
151 | 152 |
|
152 |
| - return new vscode.ProcessExecution(processName, fullCommand.slice(1), { |
| 153 | + return new vscode.ProcessExecution(processName, args, { |
153 | 154 | cwd: definition.cwd,
|
154 | 155 | env: definition.env,
|
155 | 156 | });
|
|
0 commit comments