Skip to content

Commit

Permalink
Corrected how tasks were being passed through to the executeCommand c…
Browse files Browse the repository at this point in the history
…all for subtasks (#66)
  • Loading branch information
spencerwmiles committed Jun 1, 2023
1 parent c2e2071 commit 5b935a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/TaskButtons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,9 @@ class TaskButtons {
await vscode.window.showQuickPick(task.tasks).then((subTask) => {
if (!subTask) return;

vscode.commands.executeCommand(`${COMMANDS.RUN_TASK}`, [
vscode.commands.executeCommand(`${COMMANDS.RUN_TASK}`,
subTask.task,
]);
);
});
}
);
Expand Down

0 comments on commit 5b935a4

Please sign in to comment.