find error

This commit is contained in:
Dragan Filipovic 2023-01-02 18:05:04 +01:00
parent 25122c8438
commit 3538c50479

View File

@ -39,9 +39,9 @@ const run = async () => {
run()
.then((data) => {
console.log('DONE', data);
console.log('[DONE]', data);
})
.catch((error) => {
console.error('ERROR', error.message);
console.error('[ERROR]', error.message);
process.exit(1);
});