From: Christian Heller Date: Wed, 16 Apr 2025 06:54:29 +0000 (+0200) Subject: Fix. X-Git-Url: https://plomlompom.com/repos/%22https:/validator.w3.org/%7B%7Bdb.prefix%7D%7D/conditions?a=commitdiff_plain;h=9563e03e141546f1f1e17232008afcd3241cec87;p=config Fix. --- diff --git a/bookworm/scripts/lib/copy_dirtree b/bookworm/scripts/lib/copy_dirtree index 607e0d8..507e376 100644 --- a/bookworm/scripts/lib/copy_dirtree +++ b/bookworm/scripts/lib/copy_dirtree @@ -22,7 +22,7 @@ copy_dirtree() { mkdir_p_for_user "${_OWNER}" "${_DIRECTORY}" fi cp -av "${_PATH_SOURCE}" "${_PATH_TARGET}" - if [ ! "${_OWNER}" '-' ]; then + if [ ! "${_OWNER}" = '-' ]; then chown "${_OWNER}:${_OWNER}" "${_PATH_TARGET}" fi done