aboutsummaryrefslogtreecommitdiff
path: root/check/zsh.sh
blob: 50335d56968417d048bb363aa3211482d7eef0b6 (plain) (blame)
1
2
3
4
5
for zsh in zsh/* zsh/zshrc.d/* ; do
    [ -f "$zsh" ] || continue
    zsh -n "$zsh" || exit
done
printf 'All zsh(1) scripts parsed successfully.\n'