Merge pull request #27901 from element-hq/florianduros/ci/fix-build

Fix develop build
This commit is contained in:
Florian Duros 2024-08-05 17:22:40 +00:00 committed by GitHub
commit 7073fb2faf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -714,8 +714,8 @@ module.exports = (env, argv) => {
sourcemaps: {
paths: "./webapp/bundles/**",
},
errorHandler: (err, invokeErr, compilation) => {
compilation.warnings.push("Sentry CLI Plugin: " + err.message);
errorHandler: (err) => {
console.warn("Sentry CLI Plugin: " + err.message);
console.log(`::warning title=Sentry error::${err.message}`);
},
}),