fix(scripts): exit cleanly from write-emails-to-disk script

This commit is contained in:
Phil Booth 2019-03-28 19:10:26 +00:00
Родитель 2d5ce76a1f
Коммит 2cd624beaa
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 36FBB106F9C32516
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -80,6 +80,11 @@ require('../lib/senders/translator')(config.i18n.supportedLanguages, config.i18n
})
.then(() => {
console.info('done');
process.exit(0);
})
.catch(err => {
console.error(err.stack);
process.exit(1);
});
function getEmailOutputPath(subject, extension) {