diff options
-rw-r--r-- | qtip/util/env.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qtip/util/env.py b/qtip/util/env.py index e666894a..9299f8c0 100644 --- a/qtip/util/env.py +++ b/qtip/util/env.py @@ -193,7 +193,7 @@ class AnsibleEnvSetup(object): def cleanup(self): CI_DEBUG = os.getenv('CI_DEBUG') - if CI_DEBUG: + if CI_DEBUG is not None and CI_DEBUG.lower() == 'true': logger.info("DEBUG Mode: please do cleanup by manual.") else: with open(self.keypair['public'], 'r') as f: |