| commit | 9fffa26abd7066ddd98b14976445bb3e11e288d4 | [log] [tgz] |
|---|---|---|
| author | Nghia Nguyen <[email protected]> | Sat May 13 10:17:41 2017 |
| committer | Nghia Nguyen <[email protected]> | Sat May 13 10:17:41 2017 |
| tree | 3ecea19a0ca0d54ed7ab6a95107c67967fcc27bd | |
| parent | 66731e9ae8d3b3f7229212c002023ef32dcb245c [diff] |
Use WindowsPlatformSettings for cywgin BUG=https://github.com/catapult-project/catapult/issues/3558 Review-Url: https://codereview.chromium.org/2878053004 .
diff --git a/platformsettings.py b/platformsettings.py index 81cb56c..9037ff8 100644 --- a/platformsettings.py +++ b/platformsettings.py
@@ -767,7 +767,7 @@ return _LinuxPlatformSettings() if system == 'Windows' and release == 'XP': return _WindowsXpPlatformSettings() - if system == 'Windows': + if system == 'Windows' or system.startswith('CYGWIN'): return _WindowsPlatformSettings() if system == 'FreeBSD': return _FreeBSDPlatformSettings()