Skip to content

Commit c73533d

Browse files
committed
feat: update cli call in restart.ts
1 parent 3aa981e commit c73533d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/core/restart.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import inquirer from "inquirer";
33
import chalk from "chalk";
44

55
/* index */
6-
import { myCLI } from "@/index";
6+
import { taskmasterCLI } from "@/index";
77

88
/* utils */
99
import { exitCLI } from "@/utils/extras";
@@ -26,7 +26,7 @@ export async function restartAsync(spinner?: Ora): Promise<void> {
2626
if (spinner) spinner.stop();
2727
const restart_answers = await inquirer.prompt(restart_prompt);
2828
if (restart_answers.restart) {
29-
myCLI();
29+
taskmasterCLI();
3030
} else {
3131
exitCLI();
3232
}

0 commit comments

Comments
 (0)