mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 01:17:14 +00:00
Print error before exit
This commit is contained in:
parent
0bc8c3e1de
commit
b5c2b6de5d
1 changed files with 4 additions and 1 deletions
|
@ -22,4 +22,7 @@ builder({
|
|||
},
|
||||
},
|
||||
publish: isTag ? 'always' : 'onTagOrDraft',
|
||||
}).catch(() => process.exit(1))
|
||||
}).catch(e => {
|
||||
console.error(e)
|
||||
process.exit(1)
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue