From c6ec5b74c5d4259972c37759d29aaab09982d560 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sat, 4 Apr 2020 16:18:22 -0400 Subject: [PATCH] fix: correct issue where help output for info flag implied multiple flags --- help-functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/help-functions b/help-functions index 9827927..6924473 100755 --- a/help-functions +++ b/help-functions @@ -191,7 +191,7 @@ fn-help-subcommand-args() { if [[ "$arg" == *_FLAG ]]; then arg="${arg/_FLAG/}" if [[ $arg == "INFO" ]]; then - arg="SINGLE_INFO_FLAG..." + arg="SINGLE_INFO_FLAG" args+=" ${BLUE}[--${arg//_/-}]${NORMAL}" else args+=" ${BLUE}[-${arg:0:1}|--${arg//_/-}]${NORMAL}"