Skip to content

Commit

Permalink
Add missing parenthesis
Browse files Browse the repository at this point in the history
The bug was introduced in 933c61b.
  • Loading branch information
sorin-ionescu committed Feb 23, 2015
1 parent ab45ade commit b41f485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/utility/init.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b41f485

Please sign in to comment.