From 99ffcee2a6d1d821d031199413cd71d7d1f60bbf Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Sun, 24 Jan 2010 23:47:58 +0100 Subject: [PATCH] taskd/clone.sh: fix typo in darcs error checking --- taskd/clone.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taskd/clone.sh b/taskd/clone.sh index 303a6b7..cfc0130 100755 --- a/taskd/clone.sh +++ b/taskd/clone.sh @@ -38,7 +38,7 @@ case "$url" in git fast-import --export-marks=$(pwd)/gfi-marks # This is here because by default only the exit code of # git fast-import is checked - [ $PIPESTATUS[0] = 0 -a $PIPESTATUS[1] = 0 ] + [ ${PIPESTATUS[0]} = 0 -a ${PIPESTATUS[1]} = 0 ] ;; *) git remote rm origin >/dev/null 2>&1 || : -- 2.11.4.GIT