Fix bug of infobox not displaying

This commit is contained in:
Santiago Lo Coco 2022-01-08 00:18:10 -03:00
parent 16a3ee1a61
commit adc84b4cce
1 changed files with 3 additions and 0 deletions

View File

@ -6,6 +6,9 @@ displayDialogBox() {
if [ "$1" = "--menu" ]; then
useWhiptailMenu "$@"
else
if [ "$1" = "--infobox" ] && tty | grep -q "/dev/pts"; then
local TERM=ansi
fi
useWhiptail "$@"
fi
;;