From 0344b6439b920be8678e2ae7bd3daf2104439666 Mon Sep 17 00:00:00 2001 From: Amin Bandali Date: Sun, 22 Feb 2015 23:55:09 -0500 Subject: [PATCH] Add missing parentheses Fixes parse error on init introduced by 933c61b8f1af64e745260f3c92d32fa08399688d --- modules/utility/init.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/utility/init.zsh b/modules/utility/init.zsh index 8d3b3b46..30fee32a 100644 --- a/modules/utility/init.zsh +++ b/modules/utility/init.zsh @@ -146,7 +146,7 @@ alias du='du -kh' if (( $+commands[htop] )); then alias top=htop else - if [[ "$OSTYPE" == darwin*|*bsd* ]]; then + if [[ "$OSTYPE" == (darwin*|*bsd*) ]]; then alias topc='top -o cpu' alias topm='top -o vsize' else