We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f02dc5 commit 9c77c18Copy full SHA for 9c77c18
src/bazel/tasks.ts
@@ -227,7 +227,10 @@ export function createBazelTaskFromDefinition(
227
vscode.workspace.getConfiguration("bazel.commandLine");
228
const startupOptions = bazelConfigCmdLine.get<string[]>("startupOptions");
229
const addCommandArgs =
230
- command === "build" || command === "test" || command === "coverage";
+ command === "build" ||
231
+ command === "test" ||
232
+ command === "coverage" ||
233
+ command === "run";
234
const commandArgs = addCommandArgs
235
? bazelConfigCmdLine.get<string[]>("commandArgs")
236
: [];
0 commit comments