From 40f37f648d433e81ed3ea2c1d23c9d328e8b6225 Mon Sep 17 00:00:00 2001 From: Gres Date: Sun, 1 Mar 2020 22:20:56 +0300 Subject: [PATCH] Misprint --- share/ci/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/ci/common.py b/share/ci/common.py index d6bbb42..d0f0bd3 100644 --- a/share/ci/common.py +++ b/share/ci/common.py @@ -204,7 +204,7 @@ def apply_cmd_env(cmd): key, value = match.groups() if key in os.environ and os.environ[key] == value: continue - if key.lower().find('PATH') != -1 and value.find('/') != -1: + if key.upper().find('PATH') != -1 and value.find('/') != -1: value = value.replace(':', ';') value = re.sub(r'/(\w)/', r'\1:\\', value) value = value.replace('/', '\\')