diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2009-07-28 21:45:35 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2009-07-28 21:45:35 (GMT) |
commit | 7b93d00cd6446633d1d45705cf66d1353e241d1e (patch) | |
tree | 63760fe7d662251c49d2e3f56c952e6c4d1b4e80 /bin/chkmanifest | |
parent | fb1833391f13da55d7f1963c94909a7d24d8dc2c (diff) | |
download | hdf5-7b93d00cd6446633d1d45705cf66d1353e241d1e.zip hdf5-7b93d00cd6446633d1d45705cf66d1353e241d1e.tar.gz hdf5-7b93d00cd6446633d1d45705cf66d1353e241d1e.tar.bz2 |
[svn-r17259] Comparison should write to dev/null instead of a file named 0. Tested on colonelk.
Diffstat (limited to 'bin/chkmanifest')
-rwxr-xr-x | bin/chkmanifest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/chkmanifest b/bin/chkmanifest index 4f70a6d..f239995 100755 --- a/bin/chkmanifest +++ b/bin/chkmanifest @@ -171,7 +171,7 @@ EOF exit 1 fi -if [ $errcode > 0 ]; then +if [ $errcode > '0' >/dev/null ]; then exit $errcode fi |