mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-02-17 16:10:24 +08:00
[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:
parent
ee383d182f
commit
cf212aebf8
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user