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

index 7b0ef185f6eab0db404c94e3961afa867baa5a51..1b08724bb402cdd678497704fde996391710b04d 100644 (file)
@@ -13,7 +13,7 @@ ensure_packages_of_tags() {
         for _PACKAGE in ${_PACKAGES}; do
             _PROCESSED="${_PROCESSED} ${_PACKAGE}"
             _NTH=$(echo "${_PROCESSED}" | wc -w)
-            echo -n "\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