Add missing parentheses

Fixes parse error on init introduced by 933c61b8f1
This commit is contained in:
Amin Bandali 2015-02-22 23:55:09 -05:00
parent ab45ade380
commit 0344b6439b

View file

@ -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