Skip to content

Commit d973042

Browse files
author
Mihail Slavchev
committed
fix issue #2395
1 parent 4876ada commit d973042

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/android-project-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ export class AndroidProjectService extends projectServiceBaseLib.PlatformProject
424424
let adb = this.$injector.resolve(DeviceAndroidDebugBridge, { identifier: deviceIdentifier });
425425
let deviceRootPath = `/data/local/tmp/${this.$projectData.projectId}`;
426426
adb.executeShellCommand(["rm", "-rf", deviceRootPath]).wait();
427-
adb.executeShellCommand(["mkdir", deviceRootPath]);
427+
adb.executeShellCommand(["mkdir", deviceRootPath]).wait();
428428
}).future<void>()();
429429
}
430430

0 commit comments

Comments
 (0)