From 15a73b795e61c245fc6157b4749bf187161275e4 Mon Sep 17 00:00:00 2001 From: Douglas Raillard Date: Fri, 6 Dec 2024 11:27:30 +0000 Subject: [PATCH] tools/check-setuppy: Allow running without LISA_HOME env var set FIX Ensure the tool can run without any env var set. --- tools/check-setuppy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/check-setuppy b/tools/check-setuppy index 93a9d46f2..ca610e5de 100755 --- a/tools/check-setuppy +++ b/tools/check-setuppy @@ -38,7 +38,7 @@ def main(): ( os.getenv('LISA_VENV_PATH') if int(os.getenv('LISA_USE_VENV', '0')) else - os.getenv('LISA_HOME') + LISA_HOME ), '.lisa-install-commit' ) -- GitLab