Skip to content

Commit

Permalink
fix: graceful dump_syms exit
Browse files Browse the repository at this point in the history
  • Loading branch information
BugSplatService committed Mar 20, 2024
1 parent a2f3b0c commit 45feb50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ import { CommandLineDefinition, argDefinitions, usageDefinitions } from './comma
nodeDumpSyms(file, symFile);
return symFile;
});
} catch (error) {
console.log('node-dump-syms not found, skipping sym dumping...');
} catch (cause) {
throw new Error('Can\'t run dump_syms! Please ensure node-dump-syms is installed https://github.com/BugSplat-Git/node-dump-syms', { cause });
}
}

Expand Down

0 comments on commit 45feb50

Please sign in to comment.