From 159f900f4ec6a9ca3d5b32e813bdbd1c302627f7 Mon Sep 17 00:00:00 2001 From: Luca Bilke Date: Sat, 13 Jan 2024 16:02:22 +0100 Subject: [PATCH] fix freeze --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 0ee3f5b..a4495a2 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -90,7 +90,7 @@ setup() { install_packages() { #shellcheck disable=SC2016,SC2046 - xbps-install $(xargs -a "$1") 2>&1 | grep -q "not found in repository pool." && error "Invalid package in packages.txt, run validate.sh" + xbps-install -y $(xargs -a "$1") 2>&1 | grep -q "not found in repository pool." && error "Invalid package in packages.txt, run validate.sh" info "Done!" command -v git 1>/dev/null 2>&1 || error "git isn't installed even though it should be!" command -v stow 1>/dev/null 2>&1 || error "stow isn't installed even though it should be!"