Remove debug in bootstrap.sh

This commit is contained in:
Santiago Lo Coco 2022-01-19 16:34:35 -03:00
parent 6ad9cab149
commit 9c1f31768d
1 changed files with 1 additions and 1 deletions

View File

@ -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