Skip to content

Commit

Permalink
fix: 🐛 test
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronConlon committed May 21, 2024
1 parent 08338af commit 4090c36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/action/executeCommand.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { execSync } from "node:child_process";
import { join } from "node:path";
// import confirm from "@inquirer/confirm";
import { bold } from "kleur";
import { clearScreen } from "../utils";
import { getCommand } from "./getCommand";
Expand Down
4 changes: 2 additions & 2 deletions src/action/selectDirectory.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import inquirer from "inquirer";
import { cyan, red } from "kleur";
import { green, red } from "kleur";

export const selectDirectory = async (dirs: string[]) => {
inquirer.registerPrompt("search-list", require("inquirer-search-list"));
Expand All @@ -8,7 +8,7 @@ export const selectDirectory = async (dirs: string[]) => {
.prompt([
{
type: "search-list",
message: cyan("Select a directory:"),
message: green("Select directory:"),
name: "dir",
choices: dirs,
},
Expand Down

0 comments on commit 4090c36

Please sign in to comment.