Commit f226fbb9 authored by frankf@chromium.org's avatar frankf@chromium.org

[Android] Fix parsing of md5sum_bin_host's output broken in r192444.

BUG=

Review URL: https://codereview.chromium.org/13703002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@192603 0039d316-1c4b-4281-b951-d872f2087c98
parent e8aa4d34
...@@ -684,7 +684,7 @@ class AndroidCommands(object): ...@@ -684,7 +684,7 @@ class AndroidCommands(object):
assert os.path.exists(local_path), 'Local path not found %s' % local_path assert os.path.exists(local_path), 'Local path not found %s' % local_path
md5sum_output = cmd_helper.GetCmdOutput( md5sum_output = cmd_helper.GetCmdOutput(
['%s_host' % self._md5sum_path, local_path]) ['%s_host' % self._md5sum_path, local_path])
hashes_on_host = _ComputeFileListHash(md5sum_output) hashes_on_host = _ComputeFileListHash(md5sum_output.splitlines())
if hashes_on_device == hashes_on_host: if hashes_on_device == hashes_on_host:
return return
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment