We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dff0ea0 + 38e5586 commit e752405Copy full SHA for e752405
1 file changed
script/lib/dump-symbols.js
@@ -28,8 +28,12 @@ function dumpSymbol(binaryPath) {
28
minidump.dumpSymbol(binaryPath, function(error, content) {
29
if (error) {
30
// fswin.node is only used on windows, ignore the error on other platforms
31
- if (process.platform !== 'win32' && binaryPath.match(/fswin.node/))
+ if (process.platform !== 'win32') {
32
+ console.warn(
33
+ `\n##[warning] Failed to dump the symbols via minidump. ${error}. Ignoring the error...`
34
+ );
35
return resolve();
36
+ }
37
throw new Error(error);
38
} else {
39
const moduleLine = /MODULE [^ ]+ [^ ]+ ([0-9A-F]+) (.*)\n/.exec(
0 commit comments