From 5c76bd45b04528bb2128c33da871de3dbfde08c7 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Tue, 30 Jul 2024 00:42:50 +0200 Subject: [PATCH] no script content --- spcd/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spcd/__init__.py b/spcd/__init__.py index f47533b..48492b1 100644 --- a/spcd/__init__.py +++ b/spcd/__init__.py @@ -53,7 +53,7 @@ def install_commands(path: str) -> None: def list_environment_variables() -> None: step("List environment variables") for variable, value in sorted(projects.environment.items()): - if variable != "SPCD_SSH_KEY": + if variable not in ["SPCD", "SPCD_SSH_KEY"]: log.info(f"{variable} = {value}") else: log.info(f"{variable}")