From 8cc1df72ef35d39399708a9ee44b211e19c95df1 Mon Sep 17 00:00:00 2001 From: MatMoul Date: Fri, 12 Jun 2026 21:01:32 +0200 Subject: [PATCH] fix(fedora-44): remove stray loop terminator in package list build --- fedora-44/init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fedora-44/init.sh b/fedora-44/init.sh index 0c506f3..b09e039 100644 --- a/fedora-44/init.sh +++ b/fedora-44/init.sh @@ -96,7 +96,7 @@ DNFInstallBase() { if [ "$?" = "0" ]; then pkg="" for itm in ${sel}; do - pkg="${pkg} $(echo "${itm}" | sed 's/"//g')";; + pkg="${pkg} $(echo "${itm}" | sed 's/"//g')" done # shellcheck disable=SC2086 dnf -y install ${pkg}