Merge claude/2

This commit is contained in:
librelad 2026-06-17 17:30:36 +01:00
commit 6f8596fc88

View File

@ -92,7 +92,9 @@ reconcileConfigFile()
local bak_file="${live%/*}/.${live##*/}.bak"
runCfgOp cp -a "$live" "$bak_file"
{ [[ -n "$containers_dir" && "$live" == "$containers_dir"* ]] && runFileWrite "$live" < "$tmp" || runInstallOp cp "$tmp" "$live"; }
isSuccessful "Reconciled config: $(basename "$live") (backup: ${bak_file##*/})"
# A hidden .<file>.bak sibling is still written above for safety; the
# per-file result is intentionally silent — the intro notice and the
# per-section "...completed." lines are the only reconcile output.
fi
rm -f "$tmp"
}