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 2e283a3 commit 53719a4Copy full SHA for 53719a4
bin/git-cz.js
@@ -1,4 +1,10 @@
1
var path = require('path');
2
+
3
+process.on('uncaughtException', function (err) {
4
+ console.error(err.message || err);
5
+ process.exit(1);
6
+})
7
8
require('../dist/cli/git-cz.js').bootstrap({
9
cliPath: path.join(__dirname, '../')
10
});
0 commit comments