From: Christian Heller Date: Wed, 16 Apr 2025 01:46:31 +0000 (+0200) Subject: Fix. X-Git-Url: https://plomlompom.com/repos/%22https:/validator.w3.org/static/%7B%7Bprefix%7D%7D?a=commitdiff_plain;h=1d17db2587f9cb220b12f4e5edf5824e3bc78dd0;p=config Fix. --- diff --git a/bookworm/scripts/lib/ensure_homefiles_of_tags b/bookworm/scripts/lib/ensure_homefiles_of_tags index 87ed0cb..4d54843 100644 --- a/bookworm/scripts/lib/ensure_homefiles_of_tags +++ b/bookworm/scripts/lib/ensure_homefiles_of_tags @@ -4,5 +4,7 @@ ensure_homefiles_of_tags() { _TO_CHOWN=$(copy_dirtree "${PATH_CONF_HOME}" "${PATH_USER_HOME}" $@ | sed "s/.*' -> '//g" | sed -E "s/'$//g") - chown_to_user ${_TO_CHOWN} + echo ${_TO_CHOWN} | while read _LINE; do + chown_to_user "${_LINE}" + done }