Skip to content

Commit

Permalink
fix: dylib uuid parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyg603 committed Oct 1, 2024
1 parent 742a8e2 commit 7c4e8ea
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
16 changes: 15 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
"configurations": [
{
"name": "Start",
"request": "launch",
Expand Down Expand Up @@ -56,6 +56,20 @@
],
"type": "node"
},
{
"name": "Start: dylib",
"request": "launch",
"runtimeArgs": [
"run-script",
"start:dylib",
"--preserve-symlinks"
],
"runtimeExecutable": "npm",
"skipFiles": [
"<node_internals>/**"
],
"type": "node"
},
{
"name": "Start: elf",
"request": "launch",
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"start:pdb": "ts-node -r dotenv/config ./bin/index.ts -d ./spec -f \"**/*.+(exe|dll|pdb)\"",
"start:dsym": "ts-node -r dotenv/config ./bin/index.ts -d ./spec/support -f \"*.dSYM\" -a BugSplatTester -v \"1.0 (1)\"",
"start:xcarchive": "ts-node -r dotenv/config ./bin/index.ts -d ./spec/support -f \"*.xcarchive/**/*.dSYM\" -v \"4.5.6 (1)\"",
"start:dylib": "ts-node -r dotenv/config ./bin/index.ts -d ./spec/support -f \"**/*.dylib.dSYM\"",
"start:elf": "ts-node -r dotenv/config ./bin/index.ts -d ./spec -f \"**/*.elf\"",
"start:dump_syms": "ts-node -r dotenv/config ./bin/index.ts -d ./spec -f \"**/*.dSYM\" -m",
"start:symsrv": "ts-node -r dotenv/config ./bin/index.ts -d ./spec -f \"**/*.dll\"",
Expand Down Expand Up @@ -90,7 +91,7 @@
"filenamify": "^4.3.0",
"firstline": "^2.0.2",
"glob": "^10.3.10",
"macho-uuid": "^1.3.1",
"macho-uuid": "^1.3.2",
"pdb-guid": "^1.0.7",
"pretty-bytes": "^5.6.0",
"promise-retry": "^2.0.1",
Expand Down
Binary file not shown.

0 comments on commit 7c4e8ea

Please sign in to comment.