2023-01-09 21:06:46 -08:00
|
|
|
{{- if (eq .host.distro.family "linux") -}}
|
2023-01-09 16:17:40 -08:00
|
|
|
#!/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 -}}
|