mirror of
https://github.com/nginx/nginx.git
synced 2026-08-12 06:04:47 -05:00
fix ">/dev/null 2>&1" order
This commit is contained in:
+2
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user