yadm-config/.config/yadm/hooks/post_push
2025-09-27 15:24:33 +02:00

9 lines
190 B
Bash
Executable file

#!/bin/bash
handleSecretChanges() {
secretsFolderPath="$HOME/.local/share/secrets"
git --git-dir "$secretsFolderPath/.git" --work-tree "$secretsFolderPath" push
}
handleSecretChanges