From 41888caffeee678a91c7faa6524c5bda167c384e Mon Sep 17 00:00:00 2001 From: committer Date: Thu, 6 Jun 2024 10:46:44 -0500 Subject: [PATCH] / chowning .local/share --- scripts/99_deploy.sh | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/scripts/99_deploy.sh b/scripts/99_deploy.sh index febd38d..3e031d9 100644 --- a/scripts/99_deploy.sh +++ b/scripts/99_deploy.sh @@ -380,10 +380,6 @@ if [ ${operation} == "dots+" ] ; then download_repo ${targz_dotsplus_url} tree ${clone_trg} - share_dir=/home/${system_user}/.local/share - mkdir -p ${share_dir} - chown ${system_user}:${system_user} ${share_dir} - # ---------- # fonts # ---------- @@ -424,4 +420,12 @@ if [ ${operation} == "dots+" ] ; then file_path=/usr/share/themes deploy_file "${dotsplus_trg}/miscellaneous/${file_name}" "${file_path}/" chown recursive + # ---------- + # chowning + # ---------- + share_dir=/home/${system_user}/.local/share + mkdir -p ${share_dir} + chown ${system_user}:${system_user} ${share_dir} + chown ${system_user}:${system_user} ${share_dir}/* + fi