From d555a136f210556599072b46e42255d484387254 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 1 Feb 2022 16:32:37 -0300 Subject: [PATCH] Continue if pacman installation failed --- scripts/bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index d9fe122..325934d 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -101,8 +101,8 @@ checkForDependencies() { [ ! -f "/etc/arch-release" ] && [ "$unameOutput" -ne 0 ] && return 1 sudo pacman --noconfirm --needed -Sy "${1}" if [ $? -eq 1 ]; then - echo "Couldn't install ${1}." >&2 - exit 1 + echo "Couldn't install ${1}. We will continue without it." + return 1 fi fi