We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3aa981e commit c73533dCopy full SHA for c73533d
1 file changed
src/core/restart.ts
@@ -3,7 +3,7 @@ import inquirer from "inquirer";
3
import chalk from "chalk";
4
5
/* index */
6
-import { myCLI } from "@/index";
+import { taskmasterCLI } from "@/index";
7
8
/* utils */
9
import { exitCLI } from "@/utils/extras";
@@ -26,7 +26,7 @@ export async function restartAsync(spinner?: Ora): Promise<void> {
26
if (spinner) spinner.stop();
27
const restart_answers = await inquirer.prompt(restart_prompt);
28
if (restart_answers.restart) {
29
- myCLI();
+ taskmasterCLI();
30
} else {
31
exitCLI();
32
}
0 commit comments