From 37e6fafac01727ad2f481a5ca9ce550e0e37a0c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Wed, 2 Oct 2024 23:54:25 +0200 Subject: [PATCH] dotfiles-directory: Ignore changes in .git/modules/ --- playbook.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playbook.yml b/playbook.yml index 971572b..966958d 100644 --- a/playbook.yml +++ b/playbook.yml @@ -138,7 +138,7 @@ - name: fix group for dotfiles directory shell: | - chgrp --changes --recursive dotfiles . | grep -v "changed group of './.git/index'" + chgrp --changes --recursive dotfiles . | grep -Ev "changed group of ('./.git/index'|'./.git/modules/)" args: executable: /bin/bash chdir: /var/lib/dotfiles @@ -150,7 +150,7 @@ - name: fix group permissions for dotfiles directory shell: | - chmod --changes --recursive g+rwX . | grep -v "mode of './.git/index'" + chmod --changes --recursive g+rwX . | grep -Ev "mode of ('./.git/index'|'./.git/modules/)" args: executable: /bin/bash chdir: /var/lib/dotfiles