From 816c8d208d6adc43b1c2dddac7431c682ac824d8 Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Fri, 7 Jun 2019 21:28:37 +0100 Subject: Updated environment check. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 86156ed..7320a01 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def missing_files(): FILES = ('cat.exe', 'echo.exe', 'tee.exe', 'false.exe', 'true.exe', 'sleep.exe', 'touch.exe') - if 'APPVEYOR' not in os.environ: + if os.environ.get('APPVEYOR', 'False') != 'True': FILES = ('libiconv2.dll', 'libintl3.dll') + FILES missing = [] -- cgit v1.2.1