diff --git a/src/commands/commit.ts b/src/commands/commit.ts index 4ca9709..aa35194 100644 --- a/src/commands/commit.ts +++ b/src/commands/commit.ts @@ -73,7 +73,7 @@ ${chalk.grey('——————————————————')}` ...extraArgs ]); - outro(`${chalk.green('✔')} successfully committed`); + outro(`${chalk.green('✔')} Successfully committed`); outro(stdout); @@ -102,7 +102,7 @@ ${chalk.grey('——————————————————')}` ]); pushSpinner.stop( - `${chalk.green('✔')} successfully pushed all commits to ${remotes[0]}` + `${chalk.green('✔')} Successfully pushed all commits to ${remotes[0]}` ); if (stdout) outro(stdout); @@ -126,7 +126,7 @@ ${chalk.grey('——————————————————')}` pushSpinner.stop( `${chalk.green( '✔' - )} successfully pushed all commits to ${selectedRemote}` + )} Successfully pushed all commits to ${selectedRemote}` ); if (stdout) outro(stdout); diff --git a/src/commands/config.ts b/src/commands/config.ts index 9f16034..1ca297a 100644 --- a/src/commands/config.ts +++ b/src/commands/config.ts @@ -159,7 +159,7 @@ export const setConfig = (keyValues: [key: string, value: string][]) => { writeFileSync(configPath, iniStringify(config), 'utf8'); - outro(`${chalk.green('✔')} config successfully set`); + outro(`${chalk.green('✔')} Config successfully set`); }; export const configCommand = command( diff --git a/src/commands/githook.ts b/src/commands/githook.ts index affc529..d06de8c 100755 --- a/src/commands/githook.ts +++ b/src/commands/githook.ts @@ -92,7 +92,7 @@ export const hookCommand = command( } throw new Error( - `unsupported mode: ${mode}. Supported modes are: 'set' or 'unset'` + `Unsupported mode: ${mode}. Supported modes are: 'set' or 'unset'` ); } catch (error) { outro(`${chalk.red('✖')} ${error}`);