From bc1c7c748fddf8700c3b13b359542c517dc10b4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 15 Aug 2024 17:43:57 +0200 Subject: [PATCH] try to log content of flake substitutes --- pkgs/clan-cli/tests/fixtures_flakes.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/clan-cli/tests/fixtures_flakes.py b/pkgs/clan-cli/tests/fixtures_flakes.py index 87556468a..1ddfb444f 100644 --- a/pkgs/clan-cli/tests/fixtures_flakes.py +++ b/pkgs/clan-cli/tests/fixtures_flakes.py @@ -40,6 +40,9 @@ def substitute( line = line.replace("__CLAN_SOPS_KEY_PATH__", sops_key) line = line.replace("__CLAN_SOPS_KEY_DIR__", str(flake)) buf += line + print(f"file: {file}") + print(f"clan_core: {clan_core_flake}") + print(f"flake: {flake}") file.write_text(buf)