Run shellcheck
This commit is contained in:
parent
2017fd7b47
commit
16a3ee1a61
|
@ -86,13 +86,13 @@ checkForDependencies() {
|
||||||
comm=$1
|
comm=$1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
commOuput=$(command -v ${comm} &> /dev/null)
|
command -v ${comm} &> /dev/null
|
||||||
if [ $? -eq 1 ]; then
|
if [ $? -eq 1 ]; then
|
||||||
unameOutput=$(uname -a | grep "arch")
|
unameOutput=$(uname -a | grep "arch")
|
||||||
if [ -f "/etc/arch-release" ] || [ $unameOutput -eq 0 ]; then
|
if [ -f "/etc/arch-release" ] || [ $unameOutput -eq 0 ]; then
|
||||||
sudo pacman --noconfirm --needed -Sy ${1} > /dev/null 2>&1
|
sudo pacman --noconfirm --needed -Sy ${1} > /dev/null 2>&1
|
||||||
if [ $? -eq 1 ]; then
|
if [ $? -eq 1 ]; then
|
||||||
echo "You must have an active internet connection." >&2
|
echo "Couldn't install ${1}." >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -114,11 +114,11 @@ startRice() {
|
||||||
|
|
||||||
runScript() {
|
runScript() {
|
||||||
lastFolder=$(pwd -P)
|
lastFolder=$(pwd -P)
|
||||||
cocoRiceFolder=$(echo "$(pwd -P)" | awk '{ sub(/CocoRice.*/, "CocoRice"); print }')
|
cocoRiceFolder=$(pwd -P | awk '{ sub(/CocoRice.*/, "CocoRice"); print }')
|
||||||
cd $cocoRiceFolder
|
cd $cocoRiceFolder
|
||||||
|
|
||||||
source scripts/common.sh
|
source scripts/common.sh
|
||||||
checkParameters $@
|
checkParameters "$@"
|
||||||
checkForDependencies
|
checkForDependencies
|
||||||
|
|
||||||
startRice
|
startRice
|
||||||
|
@ -127,4 +127,4 @@ runScript() {
|
||||||
cd $lastFolder
|
cd $lastFolder
|
||||||
}
|
}
|
||||||
|
|
||||||
runScript $@
|
runScript "$@"
|
||||||
|
|
|
@ -28,7 +28,7 @@ useDialog() {
|
||||||
if [ "$str" = "VALUES" ]; then
|
if [ "$str" = "VALUES" ]; then
|
||||||
argc="$#"; i=1
|
argc="$#"; i=1
|
||||||
for item in "$@"; do
|
for item in "$@"; do
|
||||||
if [ $i -eq $((${argc}-1)) ]; then
|
if [ $i -eq $((argc-1)) ]; then
|
||||||
str="$item"
|
str="$item"
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
|
@ -39,8 +39,8 @@ useDialog() {
|
||||||
width=$(calcWidthDialog "$str")
|
width=$(calcWidthDialog "$str")
|
||||||
height=$(calcHeightDialog "$str")
|
height=$(calcHeightDialog "$str")
|
||||||
if [ $inputbox = true ]; then
|
if [ $inputbox = true ]; then
|
||||||
width=$((${width}+15))
|
width=$((width+15))
|
||||||
height=$((${height}+2))
|
height=$((height+2))
|
||||||
fi
|
fi
|
||||||
formatOptions "$@"
|
formatOptions "$@"
|
||||||
if [ $found = false ]; then
|
if [ $found = false ]; then
|
||||||
|
@ -55,7 +55,7 @@ useWhiptail() {
|
||||||
if [ "$str" = "VALUES" ]; then
|
if [ "$str" = "VALUES" ]; then
|
||||||
argc="$#"; i=1
|
argc="$#"; i=1
|
||||||
for item in "$@"; do
|
for item in "$@"; do
|
||||||
if [ $i -eq $((${argc}-1)) ]; then
|
if [ $i -eq $((argc-1)) ]; then
|
||||||
str="$item"
|
str="$item"
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
|
@ -67,7 +67,7 @@ useWhiptail() {
|
||||||
width=$(calcWidthWhiptail "$str")
|
width=$(calcWidthWhiptail "$str")
|
||||||
height=$(calcHeightWhiptail "$str")
|
height=$(calcHeightWhiptail "$str")
|
||||||
if [ $inputbox = true ]; then
|
if [ $inputbox = true ]; then
|
||||||
width=$((${width}+15))
|
width=$((width+15))
|
||||||
fi
|
fi
|
||||||
if [ $infobox = true ]; then
|
if [ $infobox = true ]; then
|
||||||
height=$((height-1))
|
height=$((height-1))
|
||||||
|
@ -109,7 +109,7 @@ useDialogMenu() {
|
||||||
|
|
||||||
calcWidthWhiptail() {
|
calcWidthWhiptail() {
|
||||||
width=$(echo "$1" | wc -c)
|
width=$(echo "$1" | wc -c)
|
||||||
echo $((${width}+8))
|
echo $((width+8))
|
||||||
}
|
}
|
||||||
|
|
||||||
calcWidthDialog() {
|
calcWidthDialog() {
|
||||||
|
@ -126,7 +126,7 @@ calcWidthDialog() {
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ $found = false ]; then
|
if [ $found = false ]; then
|
||||||
echo $(($count+8))
|
echo $((count+8))
|
||||||
else
|
else
|
||||||
echo $option
|
echo $option
|
||||||
fi
|
fi
|
||||||
|
@ -139,7 +139,7 @@ calcHeightWhiptail() {
|
||||||
x = (($1 - $2 + ($2 * 60)) / 60)
|
x = (($1 - $2 + ($2 * 60)) / 60)
|
||||||
printf "%d", (x == int(x)) ? x : int(x) + 1
|
printf "%d", (x == int(x)) ? x : int(x) + 1
|
||||||
}')
|
}')
|
||||||
echo $((6+${height}))
|
echo $((6+height))
|
||||||
}
|
}
|
||||||
|
|
||||||
calcHeightDialog() {
|
calcHeightDialog() {
|
||||||
|
@ -149,7 +149,7 @@ calcHeightDialog() {
|
||||||
x = (($1 - $2 + ($2 * 60)) / 60)
|
x = (($1 - $2 + ($2 * 60)) / 60)
|
||||||
printf "%d", (x == int(x)) ? x : int(x) + 1
|
printf "%d", (x == int(x)) ? x : int(x) + 1
|
||||||
}')
|
}')
|
||||||
echo $((4+${height}))
|
echo $((4+height))
|
||||||
}
|
}
|
||||||
|
|
||||||
setDialogBox() {
|
setDialogBox() {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
cloneAndMake() {
|
cloneAndMake() {
|
||||||
displayDialogBox --infobox "Downloading ${1}" VALUES
|
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)
|
||||||
}
|
}
|
||||||
|
|
||||||
downloadAndInstallPackages() {
|
downloadAndInstallPackages() {
|
||||||
|
|
|
@ -88,7 +88,7 @@ loopThroughFiles() {
|
||||||
displayDialogBox --yesno "There are 'other' files, would you like to install them?\n\n${files}" || return
|
displayDialogBox --yesno "There are 'other' files, would you like to install them?\n\n${files}" || return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
sudo bash -c "$(declare -f runDetachedScript); $(declare -f linkFile); "runDetachedScript" "$dialogBox""
|
sudo bash -c "$(declare -f runDetachedScript); $(declare -f linkFile); runDetachedScript $dialogBox"
|
||||||
}
|
}
|
||||||
|
|
||||||
runDetachedScript() {
|
runDetachedScript() {
|
||||||
|
|
Loading…
Reference in New Issue