3 if [ -z "$1" -o -z "$2" ] ; then
5 echo "Usage: ./tar-create.sh MAJOR MINOR"
7 echo "MAJOR is the desired major version number"
8 echo "MINOR is the desired minor version number"
10 echo "This script expects a barry-\$MAJOR.\$MINOR directory"
11 echo "to exist in the directory it is run in."
22 # Create official release tarball
23 tar -cvf - $DIRNAME |
bzip2 -9c > barry-
$MAJOR.
$MINOR.
tar.bz2