diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2009-09-22 19:41:46 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2009-09-22 19:41:46 (GMT) |
commit | ecdc905099f07295d2055bbc79bb71026757baf7 (patch) | |
tree | 86a5180a0d4630fc29a2ce5c7059fe015b4b1c62 /bin/snapshot | |
parent | cd0f704f4dd50e754924b6c5cd6a883fe9f1a994 (diff) | |
download | hdf5-ecdc905099f07295d2055bbc79bb71026757baf7.zip hdf5-ecdc905099f07295d2055bbc79bb71026757baf7.tar.gz hdf5-ecdc905099f07295d2055bbc79bb71026757baf7.tar.bz2 |
[svn-r17511] Move misplaced ')' after make uninstall command so 'du -ks' command is run in test directory instead of running in snapshot directory. Snapshot directory has many more subdirectories and is often remote, increasing test running time and reporting incorrect disk usage.
Tested on smirom in hdfdts version.
Diffstat (limited to 'bin/snapshot')
-rwxr-xr-x | bin/snapshot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/snapshot b/bin/snapshot index e1c1f32..82bf557 100755 --- a/bin/snapshot +++ b/bin/snapshot @@ -412,7 +412,7 @@ if [ "$cmd" = "all" -o -n "$cmdtest" -o -n "$cmddiff" ]; then TIMESTAMP "check-install" && \ ${MAKE} check-install && DISKUSAGE \ TIMESTAMP "uninstall" && \ - ${MAKE} uninstall-all) && DISKUSAGE ; then + ${MAKE} uninstall-all && DISKUSAGE); then : else errcode=$? |