We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36f26b3 commit 5f62288Copy full SHA for 5f62288
src/project/androidProject.ts
@@ -46,7 +46,7 @@ export class AndroidProject extends Project {
46
public getDebugPortSync(tnsArgs?: string[]): number {
47
let args: string[] = [];
48
args = args.concat(tnsArgs);
49
- let output = this.cli.executeSync(["debug", "android", "--get--port"].concat(args), this.appRoot);
+ let output = this.cli.executeSync(["debug", "android", "--get-port"].concat(args), this.appRoot);
50
let port = parseInt(output.match("(?:debug port: )([\\d]{5})")[1]);
51
return port;
52
}
0 commit comments