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