home · contact · privacy
Fix.
authorChristian Heller <c.heller@plomlompom.de>
Wed, 23 Apr 2025 11:39:52 +0000 (13:39 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Wed, 23 Apr 2025 11:39:52 +0000 (13:39 +0200)
bookworm/scripts/lib/ensure_packages_of_tags

index 0a1f2a7f6f20cccc0de40bff376bbb33f2b13232..c9e8ecc27dadf7ac86a1c45d68aa89b034ea9664 100644 (file)
@@ -13,7 +13,7 @@ ensure_packages_of_tags() {
         for _PACKAGE in ${_PACKAGES}; do
             _PROCESSED="${_PROCESSED} ${_PACKAGE}"
             _NTH=$(echo "${_PROCESSED}" | wc -w)
-            echo -ne "\rFor tag '${_TAG}', ensuring installation of (${_NTH}/(${_N_PACKAGES}):${_PROCESSED}"
+            echo -ne "\rFor tag '${_TAG}', ensuring installation of (${_NTH}/${_N_PACKAGES}):${_PROCESSED}"
             apt-get -y -o Dpkg::Options::="--force-confnew" install "${_PACKAGE}" > /dev/null
         done
     done