testing the key on start

This commit is contained in:
antelle 2020-11-25 20:38:42 +01:00
parent 0058290009
commit f9560a82e2
No known key found for this signature in database
GPG Key ID: 63C9777AAB7C563C
1 changed files with 6 additions and 2 deletions

View File

@ -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);
});