Skip to content

Commit 6c26219

Browse files
committed
Corrected default VSCode build task.
1 parent cda24a6 commit 6c26219

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.vscode/tasks.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
* so we can invoke it from the debug launcher.
1111
*/
1212
"label": "cargo build",
13-
"type": "cargo",
14-
"subcommand": "build",
13+
"type": "process",
14+
"command": "cargo",
15+
"args": ["build"],
1516
"problemMatcher": [
1617
"$rustc"
1718
],
@@ -57,4 +58,4 @@
5758
"group": "build"
5859
},
5960
]
60-
}
61+
}

0 commit comments

Comments
 (0)