Commit d9b02050 authored by John Chen's avatar John Chen Committed by Commit Bot

[ChromeDriver] Fix LATEST_RELEASE update code

A misspelled platform name was preventing build bots from automatically
updating LATEST_RELEASE file.

Change-Id: I752b243fce97fff5776c7bec33cb6b2031e39508
Reviewed-on: https://chromium-review.googlesource.com/1017000Reviewed-by: default avatarJonathon Kereliuk <kereliuk@chromium.org>
Commit-Queue: John Chen <johnchen@chromium.org>
Cr-Commit-Position: refs/heads/master@{#551876}
parent 9f775bf7
...@@ -324,7 +324,7 @@ def _MaybeUpdateLatestRelease(version): ...@@ -324,7 +324,7 @@ def _MaybeUpdateLatestRelease(version):
return return
# Check if chromedriver was released on all supported platforms. # Check if chromedriver was released on all supported platforms.
supported_platforms = ['linux64', 'mac32', 'win32'] supported_platforms = ['linux64', 'mac64', 'win32']
for platform in supported_platforms: for platform in supported_platforms:
if not _WasReleased(version, platform): if not _WasReleased(version, platform):
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