Run shellcheck (common.sh)

This commit is contained in:
Santiago Lo Coco 2022-01-14 01:14:11 -03:00
parent 8d9a3215bf
commit 043ee6cca8
1 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ useDialog() {
height=$((height+2))
fi
formatOptions "$@"
if [ $found = false ]; then
if [ "$found" = false ]; then
dialog "$@" ${height} ${width}
else
dialog "${options[@]}"
@ -76,7 +76,7 @@ useWhiptail() {
height=$((height-1))
fi
formatOptions "$@"
if [ $found = false ]; then
if [ "$found" = false ]; then
height=0; width=0
whiptail "$@" ${height} ${width}
else