Remove negation for ggrep

Since it was not part of this patch
This commit is contained in:
ℳichiel ℛoos 2017-05-11 12:08:35 +02:00 committed by GitHub
parent 5566a41f7c
commit a153486944
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ if [[ ! -z ${terminfo[colors]} ]] && (( ${terminfo[colors]} >= 8 )); then
export GREP_COLORS="mt=${GREP_COLOR}" #GNU
fi
if [[ ${OSTYPE} == openbsd* ]]; then
if ! (( ${+commands[ggrep]} )); then
if (( ${+commands[ggrep]} )); then
alias grep='ggrep --color=auto'
fi
else