diff --git a/platformio/util.py b/platformio/util.py index d999380e..6477df7e 100644 --- a/platformio/util.py +++ b/platformio/util.py @@ -176,7 +176,7 @@ def change_filemtime(path, time): def is_ci(): - return os.environ.get("CI", "").lower() == "true" + return os.getenv("CI", "").lower() == "true" def exec_command(*args, **kwargs):