[svn-r17562] Fixed a syntax error that generates a file named 0.

Tested:
Jam as it is simple shell script change.
This commit is contained in:
Albert Cheng 2009-09-30 22:44:43 -05:00
parent ee383d182f
commit cf212aebf8

View File

@ -171,8 +171,8 @@ EOF
exit 1
fi
if [ $errcode > '0' >/dev/null ]; then
exit $errcode
if [ $errcode -ne 0 ]; then
exit 1
fi
test "$verbose" && echo " The MANIFEST is up to date." 1>&2