From 6046ebe44176f67b4f1b346687e031b73e3ad43f Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 20 Oct 2024 20:11:09 +0200 Subject: [PATCH] prefix --- spcd/act.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spcd/act.py b/spcd/act.py index 68ea759..203528e 100644 --- a/spcd/act.py +++ b/spcd/act.py @@ -12,7 +12,7 @@ from spcd.shell import env def action() -> None: """Display action inputs.""" - prefix = "" + prefix = "INPUT_" for variable, value in sorted(projects.environment.items()): if variable.startswith(prefix): log.info("%s = %s", variable, value)