aboutsummaryrefslogtreecommitdiff
path: root/PRESUBMIT.py
diff options
context:
space:
mode:
authorHenrik Kjellander <kjellander@webrtc.org>2015-05-25 16:33:54 +0200
committerHenrik Kjellander <kjellander@webrtc.org>2015-05-25 14:34:00 +0000
commite982a70ae3e5d301b009e9c3f9520163bd4d9eb3 (patch)
tree1ec3d7d206977ffff68ba68c47e079ae4542271f /PRESUBMIT.py
parent54be3e004981b1f3e0214d59f86bcfb3c3be9c33 (diff)
downloadwebrtc-e982a70ae3e5d301b009e9c3f9520163bd4d9eb3.tar.gz
PRESUBMIT: Fix typo.
In https://webrtc-codereview.appspot.com/50069004/ the regex for Mac trybots became invalid. This fixes it. TBR=phoglund@webrtc.org TESTED=Ran 'git cl try --bot=mac_x64_gn' Review URL: https://webrtc-codereview.appspot.com/53529004 Cr-Commit-Position: refs/heads/master@{#9278}
Diffstat (limited to 'PRESUBMIT.py')
-rwxr-xr-xPRESUBMIT.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index c6cb81612e..619a312e72 100755
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -377,7 +377,7 @@ def GetPreferredTryMasters(project, change):
if all(re.search(r'[\\/]BUILD.gn$', f) for f in files):
return GetDefaultTryConfigs(android_gn_bots + linux_gn_bots + mac_gn_bots +
win_gn_bots)
- if all(re.search('[/_])mac[/_.]', f) for f in files):
+ if all(re.search('[/_]mac[/_.]', f) for f in files):
return GetDefaultTryConfigs(mac_bots)
if all(re.search('(^|[/_])win[/_.]', f) for f in files):
return GetDefaultTryConfigs(win_bots)