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