From 20ef0fa6ddbdc944f067289207e78dcc10b7389d Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Wed, 10 Mar 2010 23:53:03 +0000 Subject: [PATCH] * don't use [[ in getmail --- getmail | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5