From: Christian Heller <c.heller@plomlompom.de> Date: Sat, 22 Mar 2025 07:32:54 +0000 (+0100) Subject: Further fixing. X-Git-Url: https://plomlompom.com/repos/%22https:/validator.w3.org/%7B%7Bdb.prefix%7D%7D/todos?a=commitdiff_plain;h=e75eed718dbfa47b1031135792e88a8fbef64fda;p=config Further fixing. --- diff --git a/testing/scripts/setup_desktop.sh b/testing/scripts/setup_desktop.sh index 295c8c8..7b90b0f 100755 --- a/testing/scripts/setup_desktop.sh +++ b/testing/scripts/setup_desktop.sh @@ -127,11 +127,11 @@ install_aptmarkeds() { # Walk through the package names in ../aptmark/ files to ensure the respective # packages are installed. for TAG in $1; do - PATH="${PATH_CONF}/aptmark/${TAG}" - if [ ! -f "${PATH}" ]; then + PATH_="${PATH_CONF}/aptmark/${TAG}" + if [ ! -f "${PATH_}" ]; then continue fi - cat "${PATH}" | while read line; do + cat "${PATH_}" | while read line; do echo "$LINE" if [ ! $(echo "${LINE}" | cut -c1) = "#" ]; then apt-get -y -o Dpkg::Options::="--force-confnew" install "${LINE}"