diff --git a/home/dot_local/bin/executable_verify-chezmoi.sh b/home/dot_local/bin/executable_verify-chezmoi.sh index 28d2de6..2aa97a6 100644 --- a/home/dot_local/bin/executable_verify-chezmoi.sh +++ b/home/dot_local/bin/executable_verify-chezmoi.sh @@ -14,7 +14,7 @@ printf 'zsh: ' && command -v zsh temp="$(mktemp)" # shellcheck disable=SC2086 chezmoi status --no-pager --no-tty $CHEZMOI_ARGUMENTS | tee "$temp" -if ! [ -s "$temp" ]; then +if [ -s "$temp" ]; then printf 'chezmoi should be on the clean state' >&2 exit 2 fi