Fix bug in install.sh (and update useWhiptail())
This commit is contained in:
parent
4457de4284
commit
c2aed1b4c9
|
@ -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
|
||||
|
|
|
@ -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 ..
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue