Skip to content

Commit

Permalink
for issue Lakr233#12
Browse files Browse the repository at this point in the history
  • Loading branch information
iOSleep committed Jul 10, 2020
1 parent b6d3141 commit 890b230
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ If you failed to build libimobiledevice or usbmuxd, try to reinstall libplist fr
- ```./autogen.sh --prefix=/opt/local --without-cython```
- ```make && sudo make install```

If you failed to launch iproxy, update libusbmuxd.

- ```brew uninstall --ignore-dependencies libusbmuxd```
- ```brew install -v --HEAD --build-from-source libusbmuxd```

To build libplist, you may want to install Xcode CommandLine Tool first along with some pre-requirements.

-> If you want to develop this extension, clone to somewhere else then ~/.vscode otherwise it would be replaced by VSC market place automatically and our binpack would be messed.
Expand Down
4 changes: 2 additions & 2 deletions src/iDeviceConnections.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ export class iDeviceNodeProvider implements vscode.TreeDataProvider<iDeviceItem>
if (iDeviceNodeProvider.iProxyPool[element.udid] === undefined) {
let dp = (element).iSSH_devicePort;
let mp = (element).iSSH_mappedPort;
console.log("[*] Starting iProxy " + mp + " " + dp + " " + element.udid + " &");
let execObject = exec("iproxy " + mp + " " + dp + " " + element.udid + "", (err, stdout, stderr) => {
console.log("[*] Starting iProxy " + mp + " " + dp + " " + "-u " + element.udid + " &");
let execObject = exec("iproxy " + mp + " " + dp + " " + "-u " + element.udid + "", (err, stdout, stderr) => {
console.log(stdout + stderr);
this.refresh();
});
Expand Down

0 comments on commit 890b230

Please sign in to comment.