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 268d4e2 commit 1bc0c05Copy full SHA for 1bc0c05
lib/interface/cli/codefresh
@@ -1,14 +1,14 @@
1
#!/usr/bin/env node
2
3
-const { printError } = require('./helpers/general');
+const Output = require('../../output/Output');
4
5
process.on('uncaughtException', (err) => {
6
- printError(err);
+ Output.printError(err);
7
process.exit(1);
8
});
9
10
process.on('unhandledRejection', (err) => {
11
12
13
14
package.json
@@ -1,6 +1,6 @@
{
"name": "codefresh",
- "version": "0.16.0",
+ "version": "0.16.1",
"description": "Codefresh command line utility",
"main": "index.js",
"preferGlobal": true,
0 commit comments