Fixed sw install directory-check

This commit is contained in:
Daniel Pätzold
2026-03-15 13:07:39 +01:00
parent 5a9059366f
commit 604f19a4fd
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ if [ "${DAVTOKEN_USER}." == "." ]; then
fi
echo "Installing additional Software."
for DIR in $(ls -d /${SCRIPTPATH}/*/ | sort); # list directories in the form "/tmp/dirname/"
for DIR in $(ls -d /${CLIENT_SOFTWARE_DST}/*/ | sort); # list directories in the form "/tmp/dirname/"
do
DIR=${DIR%*/} # remove the trailing "/"
if [ -f "${DIR}/install.sh" ]; then