Index: build/android/pylib/android_commands.py |
diff --git a/build/android/pylib/android_commands.py b/build/android/pylib/android_commands.py |
index 816b002479afe0dcc8913894189f4e5f823ef077..10aa3e2db3c97aaf7c51336f33f74d721f62acbb 100644 |
--- a/build/android/pylib/android_commands.py |
+++ b/build/android/pylib/android_commands.py |
@@ -1022,6 +1022,7 @@ class AndroidCommands(object): |
# base directories. Having calculated these they are used throughout the |
# function since this makes us less subject to any future changes to Md5Sum. |
real_host_path = os.path.realpath(host_path) |
+ self.RunShellCommand('mkdir -p "%s"' % device_path) |
jbudorick
2014/05/20 01:33:13
I don't think that GetFilesChanged should be creat
navabi
2014/05/20 01:49:15
I agree that this should not create directories on
Kibeom Kim (inactive)
2014/05/20 01:58:29
Done.
|
real_device_path = self.RunShellCommand('realpath "%s"' % device_path)[0] |
host_hash_tuples, device_hash_tuples = self._RunMd5Sum( |