Skip to content

Commit

Permalink
0.7.6
Browse files Browse the repository at this point in the history
bugfix: parameters of ios-debug is wrong
  • Loading branch information
ChiChou committed Aug 15, 2023
1 parent 2819adc commit bf26914
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"displayName": "frida Workbench",
"description": "Unofficial frida workbench for VSCode",
"version": "0.7.5",
"version": "0.7.6",
"engines": {
"vscode": "^1.69.1"
},
Expand Down
6 changes: 3 additions & 3 deletions src/commands/lldb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ export async function debug(node: TargetItem): Promise<void> {
const shellArgs = ['-D', node.device.id];
if (node instanceof AppItem) {
if (node.data.pid) {
shellArgs.push('attach', node.data.pid.toString());
shellArgs.push('--attach', node.data.pid.toString());
} else {
shellArgs.push('app', node.data.identifier);
shellArgs.push('--app', node.data.identifier);
}
} else if (node instanceof ProcessItem) {
shellArgs.push('attach', node.data.pid.toString());
shellArgs.push('--attach', node.data.pid.toString());
}

const shellPath = 'ios-debug';
Expand Down

0 comments on commit bf26914

Please sign in to comment.