fix(release): preserve failed installer retry status
Dependency Audit / dependency-audit (push) Successful in 1m43s
Deployment Installer / deployment-installer (push) Successful in 7s
Security Audit / security-audit (push) Successful in 11m21s

Cover all retry call sites with isolated regressions in focused checks and installer CI. Add EN/DE operating guidance and record the unreleased Xrechnung and installer audit follow-ups without changing immutable release artifacts.

Refs #54
This commit is contained in:
2026-09-08 05:36:10 +02:00
parent 88b685ff5e
commit 9554657bb5
6 changed files with 276 additions and 2 deletions
@@ -19,8 +19,9 @@ retry() {
for attempt in 1 2 3; do
if "$@"; then
return 0
else
status=$?
fi
status=$?
if [[ "$attempt" == 3 ]]; then
return "$status"
fi