From 734e20015c855343be3c47e9201e7031f6a52d6d Mon Sep 17 00:00:00 2001 From: mrjones <8253488+mrjones-plip@users.noreply.github.com> Date: Wed, 11 Jun 2025 11:42:49 -0700 Subject: [PATCH] add gettext to prepare_install() --- quick_start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quick_start.sh b/quick_start.sh index c9291e82..4739ddd7 100644 --- a/quick_start.sh +++ b/quick_start.sh @@ -25,7 +25,7 @@ function install_soft() { } function prepare_install() { - for i in curl wget tar iptables; do + for i in curl wget tar iptables gettext; do command -v $i &>/dev/null || install_soft $i done }