Skip to content

Commit

Permalink
Fix LogCat monitor error (#1370)
Browse files Browse the repository at this point in the history
  • Loading branch information
SounD120 committed Aug 11, 2020
1 parent 869b2b5 commit b78a1aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension/android/adb.ts
Expand Up @@ -131,7 +131,7 @@ export class AdbHelper {
}

public startLogCat(adbParameters: string[]): ISpawnResult {
return new ChildProcess().spawn(`${this.adbExecutable}`, adbParameters);
return this.childProcess.spawn(this.adbExecutable.replace(/\"/g, ""), adbParameters);
}

public parseSdkLocation(fileContent: string, logger?: ILogger) {
Expand Down

0 comments on commit b78a1aa

Please sign in to comment.