Skip to content

Commit 77bfbba

Browse files
author
Mihail Slavchev
committed
fix string template
1 parent 7d7a1e6 commit 77bfbba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/android-debug-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ class AndroidDebugService implements IDebugService {
154154

155155
private attachDebugger(deviceId: string, packageName: string): IFuture<void> {
156156
return (() => {
157-
let startDebuggerCommand = ["am", "broadcast", "-a", '\"${packageName}-debug\"', "--ez", "enable", "true"];
157+
let startDebuggerCommand = ["am", "broadcast", "-a", `\"${packageName}-debug\"`, "--ez", "enable", "true"];
158158
this.device.adb.executeShellCommand(startDebuggerCommand).wait();
159159

160160
if (this.$options.client) {

0 commit comments

Comments
 (0)