From 9178380102b3a6cbf61eda1c3f1ec7ecf55f4fde Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 1 Feb 2022 16:27:55 -0300 Subject: [PATCH] Fix bug --- scripts/bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index d139a7c..d9fe122 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -96,7 +96,7 @@ checkForDependencies() { comm=$1 && [ "$1" = "libnewt" ] && comm=whiptail command -v "${comm}" &> /dev/null - if [ $? -eq 1 ]; then + if [ $? -ne 0 ]; then unameOutput=$(uname -a | grep "arch") [ ! -f "/etc/arch-release" ] && [ "$unameOutput" -ne 0 ] && return 1 sudo pacman --noconfirm --needed -Sy "${1}"