From 3aaff23f78e5682383a034b297c65a6e42f4341c Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Tue, 10 May 2016 14:00:13 +0900 Subject: [PATCH] Do not call import_vs_env for non-win32 --- script/lib/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/lib/util.py b/script/lib/util.py index c167d1d5c521..718962769dd8 100644 --- a/script/lib/util.py +++ b/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':