summaryrefslogtreecommitdiffstats
path: root/bin/chkmanifest
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2000-01-07 23:23:57 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2000-01-07 23:23:57 (GMT)
commit0fc0c73054879391e8ed5ca614e4d4ae12f9d172 (patch)
treeae9ea45c212e85e3a0330ff363647f9f114b771c /bin/chkmanifest
parentacc81e38ce91b3bba8458aa52f01c845c5cde6f2 (diff)
downloadhdf5-0fc0c73054879391e8ed5ca614e4d4ae12f9d172.zip
hdf5-0fc0c73054879391e8ed5ca614e4d4ae12f9d172.tar.gz
hdf5-0fc0c73054879391e8ed5ca614e4d4ae12f9d172.tar.bz2
[svn-r1938] Print a message when all is well.
Diffstat (limited to 'bin/chkmanifest')
-rwxr-xr-xbin/chkmanifest3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/chkmanifest b/bin/chkmanifest
index a166fe7..63612c8 100755
--- a/bin/chkmanifest
+++ b/bin/chkmanifest
@@ -10,7 +10,7 @@ MANIFEST=/tmp/H5_MANIFEST.$$
# Copy the manifest file to get a list of file names.
grep '^\.' MANIFEST | expand | cut -f1 -d' ' >$MANIFEST
-test "$verbose" && echo " Checking manifest..." 1>&2
+test "$verbose" && echo " Checking MANIFEST..." 1>&2
test -f $MANIFEST || exit 1
for file in `cat $MANIFEST`; do
if [ ! -f $file ]; then
@@ -39,4 +39,5 @@ EOF
exit 1
fi
+test "$verbose" && echo " The MANIFEST is up to date." 1>&2
exit 0