build/build-plugins.js: add missing catch (#30722)

This commit is contained in:
XhmikosR 2020-05-04 19:54:49 +03:00 committed by GitHub
parent 727e09b641
commit 89822cfa05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -179,6 +179,7 @@ function build(plugin) {
.then(() => console.log(`Building ${plugin} plugin... Done!`))
.catch(error => console.error(`${plugin}: ${error}`))
})
.catch(error => console.error(`${plugin}: ${error}`))
}
Object.keys(bsPlugins)