Skip to content

Commit d71c925

Browse files
authored
feat: allow running tasks in parallel (#157)
1 parent 0aa42b6 commit d71c925

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/miseService.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ export class MiseService {
580580
}
581581

582582
async runTask(taskName: string, ...args: string[]): Promise<void> {
583-
const terminal = this.getOrCreateTerminal("Mise run");
583+
const terminal = this.getOrCreateTerminal(`run ${taskName}`);
584584
terminal.show();
585585

586586
const runTaskCmd = isWindows
@@ -592,7 +592,7 @@ export class MiseService {
592592
}
593593

594594
async watchTask(taskName: string, ...args: string[]): Promise<void> {
595-
const terminalName = `mise-watch ${taskName}`;
595+
const terminalName = `watch ${taskName}`;
596596
const previousTerminal = this.terminals.get(terminalName);
597597
if (previousTerminal) {
598598
previousTerminal.dispose();

0 commit comments

Comments
 (0)