diff options
-rw-r--r-- | python/servo/command_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index 7786d1d5a34..a3724869e04 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -41,7 +41,7 @@ def host_triple(): os_type = "apple-darwin" elif os_type == "android": os_type = "linux-androideabi" - elif os_type.startswith("mingw64_nt-"): + elif os_type == "windows" or os_type.startswith("mingw64_nt-"): os_type = "pc-windows-gnu" else: os_type = "unknown" |