Chromium Code Reviews| Index: tools/bots/compiler.py |
| =================================================================== |
| --- tools/bots/compiler.py (revision 23239) |
| +++ tools/bots/compiler.py (working copy) |
| @@ -80,8 +80,9 @@ |
| else : |
| return None |
| - if system == 'windows': |
| - system = 'win7' |
| + # We have both win7 and win8 bots, functionality is the same. |
| + if system.startsWith('win'): |
| + system = 'windows' |
| # We have both 10.8 and 10.7 bots, functionality is the same. |
| if system == 'mac10.8' or system == 'mac10.7': |