Update file run_after_ensure-executable.tmpl

This commit is contained in:
Brian Zalewski 2023-01-10 00:17:40 +00:00
parent 08f39fc10c
commit 3d1eef0eb0

View file

@ -0,0 +1,13 @@
{{- if eq .host.distro.family "linux" }}
#!/usr/bin/env bash
{{ includeTemplate "universal/profile" }}
{{ includeTemplate "universal/logg" }}
### Ensure ~/.config/git/template/hooks files are executable
logg info 'Ensuring '"$XDG_CONFIG_HOME"'/git/template/hooks files are executable'
find "$XDG_CONFIG_HOME/git/template/hooks" -mindepth 1 -maxdepth 1 -type f | while read HOOK; do
chmod +x "$HOOK"
done
{{ end -}}