release 1.3.4: summary i18n, monpages code-21, aptdeploy path

This commit is contained in:
Hernâni Marques 2026-07-18 20:09:41 +02:00
parent 2e19609bab
commit a0d00375cf
No known key found for this signature in database
6 changed files with 32 additions and 12 deletions

5
lib.sh
View file

@ -878,10 +878,11 @@ summary() {
printf -- ' %s[ WARN ] warnings only (no hard fail)%s\n' "$Y" "$N"
fi
else
_fail_msg=$(i18n_text 'failed — see list above')
if [ "${BOX:-0}" = "1" ]; then
printf -- ' %s┌ ERROR ┐%s %s"$(i18n_text "failed — see list above")"%s\n' "$BG_ERR" "$N" "$R" "$N"
printf -- ' %s┌ ERROR ┐%s %s%s%s\n' "$BG_ERR" "$N" "$R" "$_fail_msg" "$N"
else
printf -- ' %s[ ERROR ] "$(i18n_text "failed — see list above")"%s\n' "$R" "$N"
printf -- ' %s[ ERROR ] %s%s\n' "$R" "$_fail_msg" "$N"
fi
fi
[ "$FAIL_N" -eq 0 ]