From f1fb2e6cd9c774e8f39ab5e8f7896585a56711c2 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 29 Jun 2018 17:22:56 +1200 Subject: Break sh noglob guard into two lines for clarity They're nicer to read this way. --- zsh/zshrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'zsh/zshrc') diff --git a/zsh/zshrc b/zsh/zshrc index fa4186d4..2977c4d9 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -17,6 +17,7 @@ SAVEHIST=$((1 << 12)) # Load Zsh-specific startup files for sh in "$HOME"/.zshrc.d/*.zsh ; do - [[ -e $sh ]] && source "$sh" + [[ -e $sh ]] || continue + source "$sh" done unset -v sh -- cgit v1.2.3