From: Don Armstrong Date: Wed, 10 Mar 2010 23:53:03 +0000 (+0000) Subject: * don't use [[ in getmail X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=20ef0fa6ddbdc944f067289207e78dcc10b7389d;p=bin.git * don't use [[ in getmail --- diff --git a/getmail b/getmail index 09ec4bc..539fbfe 100755 --- a/getmail +++ b/getmail @@ -8,7 +8,7 @@ MUA=mutt # Don't check mail if ~/.nocheck exists and we're not running # interactively. -if [[ -z "$CRON" && -e ~/.nocheck ]]; then +if [ -z "$CRON" ] && [ -e ~/.nocheck ]; then exit 0; fi;