From fe973a967dce8c39a6bd9e1b18d4c113085e8c23 Mon Sep 17 00:00:00 2001 From: rwxrob Date: Tue, 10 Aug 2021 21:59:02 -0400 Subject: [PATCH] Fix bug with set -e and command_help --- command | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command b/command index f98bb05..c32e9e9 100755 --- a/command +++ b/command @@ -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"