diff options
-rw-r--r-- | editors/code/src/commands/runnables.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/commands/runnables.ts b/editors/code/src/commands/runnables.ts index 74d664034..c6d23a185 100644 --- a/editors/code/src/commands/runnables.ts +++ b/editors/code/src/commands/runnables.ts | |||
@@ -37,7 +37,7 @@ export function createTask(spec: Runnable): vscode.Task { | |||
37 | const TASK_SOURCE = 'Rust'; | 37 | const TASK_SOURCE = 'Rust'; |
38 | const definition: CargoTaskDefinition = { | 38 | const definition: CargoTaskDefinition = { |
39 | type: 'cargo', | 39 | type: 'cargo', |
40 | label: 'cargo', | 40 | label: spec.label, |
41 | command: spec.bin, | 41 | command: spec.bin, |
42 | args: spec.args, | 42 | args: spec.args, |
43 | env: spec.env | 43 | env: spec.env |