From 08ce78c8899dd0f401fd35bafe44dcdd4b1cb619 Mon Sep 17 00:00:00 2001 From: Michel Fedde Date: Sat, 27 Sep 2025 15:24:33 +0200 Subject: [PATCH] Fixes post_push --- .config/yadm/hooks/post_push | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) mode change 100644 => 100755 .config/yadm/hooks/post_push diff --git a/.config/yadm/hooks/post_push b/.config/yadm/hooks/post_push old mode 100644 new mode 100755 index 1a90b4b..24c337d --- a/.config/yadm/hooks/post_push +++ b/.config/yadm/hooks/post_push @@ -3,6 +3,7 @@ handleSecretChanges() { secretsFolderPath="$HOME/.local/share/secrets" - git --git-dir "$secretsFolderPath/.git" --work-tree "$secretsFolderPath" push } + git --git-dir "$secretsFolderPath/.git" --work-tree "$secretsFolderPath" push +} handleSecretChanges