summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2019-06-07 21:28:37 +0100
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2019-06-07 21:28:37 +0100
commit816c8d208d6adc43b1c2dddac7431c682ac824d8 (patch)
tree8ea3db7af351497ece3caa522f5d9afdf222af16
parent59cacbcdc5c5bee6250e6461a1138f72e2271593 (diff)
downloadlogutils-git-816c8d208d6adc43b1c2dddac7431c682ac824d8.tar.gz
Updated environment check.
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
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 = []