Update .local/share/chezmoi/home/dot_local/bin/executable_provision.tmpl, .local/share/chezmoi/home/dot_local/bin/run_onchange_ensure-executable.tmpl

This commit is contained in:
Brian Zalewski 2022-12-06 20:01:19 +00:00
parent f0279e00f7
commit 4a0f963170
2 changed files with 2 additions and 2 deletions

View file

@ -83,7 +83,7 @@ fi
### System package manager update / Homebrew dependencies
if ! command -v curl > /dev/null || ! command -v git > /dev/null; then
logg 'Ensuring `curl` and `git` are installed via the system package manager'
logg info 'Ensuring `curl` and `git` are installed via the system package manager'
if command -v apt-get > /dev/null; then
# Debian / Ubuntu
sudo apt-get update

View file

@ -10,7 +10,7 @@
{{ end -}}
{{- end }}
logg 'Ensuring all files in ~/.local/bin are executable'
logg info 'Ensuring all files in ~/.local/bin are executable'
find "$HOME/.local/bin" -mindepth 1 -maxdepth 1 -type f | while read EXE_FILE; do
chmod +x "$EXE_FILE"
done