This commit is contained in:
Santiago Lo Coco 2022-02-01 16:27:55 -03:00
parent fff603a199
commit 9178380102
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ checkForDependencies() {
comm=$1 && [ "$1" = "libnewt" ] && comm=whiptail comm=$1 && [ "$1" = "libnewt" ] && comm=whiptail
command -v "${comm}" &> /dev/null command -v "${comm}" &> /dev/null
if [ $? -eq 1 ]; then if [ $? -ne 0 ]; then
unameOutput=$(uname -a | grep "arch") unameOutput=$(uname -a | grep "arch")
[ ! -f "/etc/arch-release" ] && [ "$unameOutput" -ne 0 ] && return 1 [ ! -f "/etc/arch-release" ] && [ "$unameOutput" -ne 0 ] && return 1
sudo pacman --noconfirm --needed -Sy "${1}" sudo pacman --noconfirm --needed -Sy "${1}"