We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd86290 commit 67b2522Copy full SHA for 67b2522
bin/pre-push.ts
@@ -109,7 +109,7 @@ process.exit(42)
109
function checkReturn (ret: ShellString) {
110
if (ret.code !== 0) {
111
const line = '------------------------------------------'
112
- console.error(`Error:\n${line}\n\n${ret.stderr}\n\n${line}\n`)
+ console.error(`Error:\n${line}\n\n${ret.stderr || ret.stdout}\n\n${line}\n`)
113
process.exit(1)
114
}
115
return ret
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@chatie/git-scripts",
3
- "version": "0.7.9",
+ "version": "0.7.10",
4
"description": "Git Hooks Integration for Chatie Projects",
5
"directories": {
6
"doc": "docs",
0 commit comments