aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/watch.js
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/watch.js')
-rw-r--r--scripts/watch.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/watch.js b/scripts/watch.js
index be05f2b..7c9a4fe 100644
--- a/scripts/watch.js
+++ b/scripts/watch.js
@@ -29,6 +29,12 @@ const stderrIgnorePatterns = [
29 // GPU sandbox error with the mesa GLSL cache 29 // GPU sandbox error with the mesa GLSL cache
30 // https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=918433 30 // https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=918433
31 /InitializeSandbox\(\) called with multiple threads in process gpu-process/, 31 /InitializeSandbox\(\) called with multiple threads in process gpu-process/,
32 // Very spammy GPU error reporting
33 // https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=901831
34 /GetVSyncParametersIfAvailable\(\) failed/,
35 // Does not seem to occur in production
36 // https://github.com/electron/electron/issues/32133#issuecomment-1079916988
37 /(sandbox_bundle\.js script failed to run|object null is not iterable).+ node:electron\/js2c\/sandbox_bundle \(160\)$/,
32]; 38];
33 39
34/** 40/**