From 612588af1700bc2b84b65a47458091ee3bead1cf Mon Sep 17 00:00:00 2001 From: Albert Cheng Date: Fri, 25 Apr 2014 18:24:34 -0500 Subject: [svn-r25121] HDFFV-8755: Remove compress option from bin/release Tested: by hand. "bin/release ... compress" to see it failed and to see it succeeded when compress is not used. --- bin/release | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/bin/release b/bin/release index afc27cf..06fbc68 100755 --- a/bin/release +++ b/bin/release @@ -57,7 +57,6 @@ for compressing the resulting tar archive (if none are given then "tar md5" is assumed): tar -- use tar and don't do any compressing. - compress -- use compress and append ".Z" to the output name. gzip -- use gzip with "-9" and append ".gz" to the output name. bzip2 -- use bzip2 with "-9" and append ".bz2" to the output name. zip -- convert all text files to DOS style and form a zip file for Windows use. @@ -73,7 +72,7 @@ Examples: $ release gzip releases/hdf5-1.0.38.tar.gz - $ release -d /tmp tar compress gzip bzip2 md5 + $ release -d /tmp tar gzip zip md5 /tmp/hdf5-1.0.38.tar /tmp/hdf5-1.0.38.tar.Z /tmp/hdf5-1.0.38.tar.gz @@ -306,10 +305,6 @@ for comp in $methods; do tar) cp -p $tmpdir/$HDF5_VERS.tar $DEST/$HDF5_VERS.tar ;; - compress) - test "$verbose" && echo " Running compress..." 1>&2 - compress -c <$tmpdir/$HDF5_VERS.tar >$DEST/$HDF5_VERS.tar.Z - ;; gzip) test "$verbose" && echo " Running gzip..." 1>&2 gzip -9 <$tmpdir/$HDF5_VERS.tar >$DEST/$HDF5_VERS.tar.gz @@ -343,6 +338,10 @@ for comp in $methods; do (cd $tmpdir && tar cf ${HDF5_VERS}_docs.tar ${HDF5_VERS}_docs) mv $tmpdir/${HDF5_VERS}_docs.tar $DEST ;; + *) + echo "***Error*** Unknown method $comp" + exit 1 + ;; esac done -- cgit v0.12