Skip to content

Commit 27a4d37

Browse files
author
Mihail Slavchev
authored
fix issue #2395 (#2396)
1 parent 0efaa12 commit 27a4d37

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
@@ -428,7 +428,7 @@ export class AndroidProjectService extends projectServiceBaseLib.PlatformProject
428428
let adb = this.$injector.resolve(DeviceAndroidDebugBridge, { identifier: deviceIdentifier });
429429
let deviceRootPath = `/data/local/tmp/${this.$projectData.projectId}`;
430430
adb.executeShellCommand(["rm", "-rf", deviceRootPath]).wait();
431-
adb.executeShellCommand(["mkdir", deviceRootPath]);
431+
adb.executeShellCommand(["mkdir", deviceRootPath]).wait();
432432
}).future<void>()();
433433
}
434434

0 commit comments

Comments
 (0)