Skip to content

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Debajyati committed Jun 6, 2024
1 parent d94158b commit b2d8139
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ const main = async () => {
{
type: "input",
name: "want",
message: `${chalk.cyan(`view the repository contents?`) `(${chalk.green('y')}/${chalk.red('n')}) [default=${chalk.red('n')}] `}`,
message: `${chalk.cyan(`view the repository contents?`)} (${chalk.green('y')}/${chalk.red('n')}) [default=${chalk.red('n')}] `,
},
]);
if (askUser.want === "yes" || askUser.want === "y" || askUser.want === "Y") {
Expand All @@ -205,7 +205,7 @@ const main = async () => {
{
type: "input",
name: "want",
message: `${chalk.cyan(`clone the repository?`) `(${chalk.green('y')}/${chalk.red('n')}) [default=${chalk.red('n')}] `}`,
message: `${chalk.cyan(`clone the repository?`)} (${chalk.green('y')}/${chalk.red('n')}) [default=${chalk.red('n')}] `,
},
]);
if (
Expand All @@ -217,7 +217,7 @@ const main = async () => {
{
type: "input",
name: "choice",
message: `${chalk.cyan(`clone into a specific directory?`) `(${chalk.green('y')}/${chalk.red('n')}) [default=${chalk.red('n')}] `}`,
message: `${chalk.cyan('clone into a specific directory?')} (${chalk.green('y')}/${chalk.red('n')}) [default=${chalk.red('n')}] `,
},
]);
if (
Expand All @@ -230,7 +230,7 @@ const main = async () => {
type: "input",
name: "input",
message:
chalk.cyan("Enter the directory for cloning (WARNING: directory must NOT ALREADY exist!) -> "),
chalk.cyan(`Enter the directory for cloning ${chalk.yellow('(WARNING: directory must NOT ALREADY exist!)')} -> `),
},
]);
console.log(chalk.bgMagentaBright(chalk.black("Cloning Initaited!\n")));
Expand Down

0 comments on commit b2d8139

Please sign in to comment.