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

View File

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