Browse Source

Do not call import_vs_env for non-win32

Cheng Zhao 9 years ago
parent
commit
3aaff23f78
1 changed files with 1 additions and 1 deletions
  1. 1 1
      script/lib/util.py

+ 1 - 1
script/lib/util.py

@@ -227,7 +227,7 @@ def s3put(bucket, access_key, secret_key, prefix, key_prefix, files):
 
 
 def import_vs_env(target_arch):
-  if sys.platform == 'cygwin':
+  if sys.platform != 'win32':
     return
 
   if target_arch == 'ia32':