From fe6cd1608d3b8fdd3cc2e9f35d1389760418bcdb Mon Sep 17 00:00:00 2001 From: "Esteban Mackay Q." Date: Thu, 12 Dec 2024 19:19:35 -0500 Subject: [PATCH] Update install.sh --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 18b4060..8691fb5 100644 --- a/install.sh +++ b/install.sh @@ -223,7 +223,7 @@ check_and_install() { app=$1 if ! dpkg -s $app 2>/dev/null | grep -q "Status: install ok installed"; then echo "$app no está instalado. Instalando..." - apt-get install -y $app + sudo DEBIAN_FRONTEND=noninteractive apt-get install -y $app echo "$app instalado correctamente." else echo "$app ya está instalado."