Fix bug with set -e and command_help

This commit is contained in:
rwxrob 2021-08-10 21:59:02 -04:00
parent 65cd8eb81c
commit fe973a967d
No known key found for this signature in database
GPG Key ID: 1CCACEDD2F65578E
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ Also see `readme` and `usage` commands.
command_help() {
local name="${1:-main}" title own body
title=$(_help_title "$name")
title=$(_help_title "$name") || true
if [[ -z "$title" ]]; then
body="${help[$name]}"
title="$EXE $name"