fix ">/dev/null 2>&1" order

This commit is contained in:
Igor Sysoev
2006-09-18 12:35:01 +00:00
parent 2bdefc12d8
commit 14fcd477a1
3 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -44,7 +44,7 @@ if [ -x $NGX_AUTOTEST ]; then
yes)
# /bin/sh is used to intercept "Killed" or "Abort trap" messages
if /bin/sh $NGX_AUTOTEST > /dev/null 2>&1; then
if /bin/sh $NGX_AUTOTEST >/dev/null 2>&1; then
echo " found"
ngx_found=yes
@@ -59,7 +59,7 @@ if [ -x $NGX_AUTOTEST ]; then
bug)
# /bin/sh is used to intercept "Killed" or "Abort trap" messages
if /bin/sh $NGX_AUTOTEST > /dev/null 2>&1; then
if /bin/sh $NGX_AUTOTEST >/dev/null 2>&1; then
echo " not found"
else