Cleanup behavior to function when things are missing

This commit is contained in:
Lockszmith 2022-05-29 00:08:37 +00:00
parent 999422da87
commit 12e3c5a470
14 changed files with 35 additions and 19 deletions

View file

@ -0,0 +1,5 @@
if [[ -n "$(type -fP chezmoi)" ]]; then
CHEZMOI_OUT="$(chezmoi status || true)x"
[[ -n "$CHEZMOI_OUT" ]] && printf "\nChezmoi changes:\n" && echo "${CHEZMOI_OUT%?}"
unset CHEZMOI_OUT
fi