Fix bug in install.sh (and update useWhiptail())

This commit is contained in:
Santiago Lo Coco 2022-01-03 14:19:45 -03:00
parent 4457de4284
commit c2aed1b4c9
2 changed files with 6 additions and 2 deletions

View File

@ -51,7 +51,7 @@ useDialog() {
}
useWhiptail() {
str="${@: -1}"; inputbox=false
str="${@: -1}"; inputbox=false; infobox=false
if [ "$str" = "VALUES" ]; then
argc="$#"; i=1
for item in "$@"; do
@ -60,6 +60,7 @@ useWhiptail() {
break
fi
[ "$item" = "--inputbox" ] && inputbox=true
[ "$item" = "--infobox" ] && infobox=true
((i++))
done
fi
@ -68,6 +69,9 @@ useWhiptail() {
if [ $inputbox = true ]; then
width=$((${width}+15))
fi
if [ $infobox = true ]; then
height=$((height-1))
fi
formatOptions "$@"
if [ $found = false ]; then
height=0; width=0

View File

@ -1,7 +1,7 @@
#!/bin/sh
cloneAndMake() {
displayDialogBox --infobox "Downloading ${1}"
displayDialogBox --infobox "Downloading ${1}" VALUES
git clone $2 > /dev/null 2>&1
cd $1; sudo make install > /dev/null 2>&1; cd ..
}