better way to print errors from plugin creation script

This commit is contained in:
antelle 2017-12-30 23:30:49 +01:00
parent c65f29c2d1
commit f917856698
1 changed files with 2 additions and 0 deletions

View File

@ -93,6 +93,8 @@ function signPlugin(packageName) {
} else {
console.log('No changes');
}
}).catch(e => {
console.error('Error', e);
});
}