From db0eb0e490ed7d0b4eb13be1e6838f8ed1f7f8d6 Mon Sep 17 00:00:00 2001 From: Midia Kiasat Date: Sun, 8 Mar 2026 22:49:52 +0100 Subject: [PATCH] Harden archicustos ledger footer write for POSIX-safe execution --- archicustos.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/archicustos.sh b/archicustos.sh index 31c88b1..d9f1ca1 100755 --- a/archicustos.sh +++ b/archicustos.sh @@ -1,5 +1,5 @@ #!/bin/sh -# ARCHICUSTOS v0.0.0 +# ARCHICUSTOS v0.1.0 # Custody tracking utility # Records custody claims with continuity enforcement. # No execution. No mutation. No remediation. @@ -66,7 +66,7 @@ REPO="$(git rev-parse --show-toplevel)" printf 'REPO: %s\n' "$REPO" printf 'COMMIT: %s\n' "$COMMIT" printf 'CUSTODY:\n%s\n' "$TEXT" - printf '---\n' + printf '%s\n' '---' } >> ARCHICUSTOS.log # --- Verdict ---------------------------------------------------------------