Run shellcheck (common.sh)
This commit is contained in:
parent
8d9a3215bf
commit
043ee6cca8
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue