From 9c1f31768d3634bc16679a2f536ba32991ce6310 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Wed, 19 Jan 2022 16:34:35 -0300 Subject: [PATCH] Remove debug in bootstrap.sh --- scripts/bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 2c8b56c..d6536bf 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -92,7 +92,7 @@ checkForDependencies() { if [ $? -eq 1 ]; then unameOutput=$(uname -a | grep "arch") if [ -f "/etc/arch-release" ] || [ "$unameOutput" -eq 0 ]; then - sudo pacman --noconfirm --needed -Sy "${1}" 2>&1 | debug + sudo pacman --noconfirm --needed -Sy "${1}" if [ $? -eq 1 ]; then echo "Couldn't install ${1}." >&2 exit 1