fix(env): stop printing Bitwarden secret names

This commit is contained in:
andrexibiza 2026-07-07 09:21:02 -05:00 committed by Teknium
parent 2beed8b53d
commit fe5d0be6db
2 changed files with 41 additions and 2 deletions

View file

@ -431,8 +431,7 @@ def _apply_external_secret_sources(home_path: Path) -> None:
if src.applied:
print(
f" {src.label}: applied {len(src.applied)} "
f"secret{'s' if len(src.applied) != 1 else ''} "
f"({', '.join(sorted(src.applied))})",
f"secret{'s' if len(src.applied) != 1 else ''}",
file=sys.stderr,
)
if src.result.error: