From 5b674bcaf774e6c5b37ca29cdefcac4c2ce91571 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Wed, 16 Feb 2022 12:15:45 -0300 Subject: [PATCH] Update displayDialogBox() --- scripts/common.sh | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/scripts/common.sh b/scripts/common.sh index ea3bd38..42fadc0 100755 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -3,21 +3,15 @@ displayDialogBox() { case $dialogBox in whiptail) - if [ "$1" = "--menu" ]; then - useWhiptailListOrMenu "$@" - elif [ "$1" = "--checklist" ]; then + if [[ "$1" == "--checklist" || "$1" == "--menu" ]]; then useWhiptailListOrMenu "$@" else - if [ "$1" = "--infobox" ] && tty | grep -q "/dev/pts"; then - local TERM=ansi - fi + [ "$1" = "--infobox" ] && tty | grep -q "/dev/pts" && local TERM=ansi useWhiptail "$@" fi ;; dialog) - if [ "$1" = "--menu" ]; then - useDialogListOrMenu "$@" - elif [ "$1" = "--checklist" ]; then + if [[ "$1" == "--checklist" || "$1" == "--menu" ]]; then useDialogListOrMenu "$@" else useDialog "$@"