From f9560a82e2510c534ee35c114a7d87699bb82c9e Mon Sep 17 00:00:00 2001 From: antelle Date: Wed, 25 Nov 2020 20:38:42 +0100 Subject: [PATCH] testing the key on start --- scripts/start.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/scripts/start.js b/scripts/start.js index 53dbb0a..57932e0 100644 --- a/scripts/start.js +++ b/scripts/start.js @@ -1,4 +1,8 @@ -(async function() { +(async function () { + await require('./sign')(Buffer.from('test')); await require('./download-translations')(); require('./update-plugins'); -})(); +})().catch((err) => { + // eslint-disable-next-line no-console + console.error('Error', err); +});