From c41460e4a24cdb9e479c7a10808db642bbf8d541 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Wed, 9 Dec 2020 22:35:23 +0100 Subject: [PATCH] Fix /var/lib/dotfiles permissions after install --- install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install.sh b/install.sh index c9f5efa..66c0a67 100755 --- a/install.sh +++ b/install.sh @@ -86,3 +86,7 @@ if ! python3 -c 'import venv' 2>/dev/null ; then fi cd "$DOTDIR" && make + +# fix permissions of the directory +sudowrap chgrp -R dotfiles "${DOTDIR}" +sudowrap chmod g+wX "${DOTDIR}"