We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 442ed67 commit 793cb9eCopy full SHA for 793cb9e
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "gitmoji-cli",
3
- "version": "1.5.5",
+ "version": "1.5.6",
4
"description": "A gitmoji client for using emojis on commit messages.",
5
"engines": {
6
"node": ">=4"
src/gitmoji.js
@@ -80,8 +80,9 @@ class GitmojiCli {
80
fs.unlink(commitHookPath, err => {
81
if (err) {
82
this._errorMessage(err);
83
+ } else {
84
+ console.log(`${chalk.yellow('gitmoji')} commit hook unlinked successfully.`);
85
}
- console.log(`${chalk.yellow('gitmoji')} commit hook unlinked successfully.`);
86
});
87
88
0 commit comments