Skip to content
Snippets Groups Projects
Commit 667a476a authored by Raymond Toy's avatar Raymond Toy
Browse files

Don't add .git directory to src tarball! If compression or version is

not given, use some reasonable default so we don't end up with a weird
tarball.
parent 26f37caf
Branches rearrange-dir
Tags
No related merge requests found
......@@ -25,7 +25,18 @@ done
shift `expr $OPTIND - 1`
VERSION=$1
# If no compression given, default to gzip (on the assumption that
# that is available everywhere.)
if [ -z "$ENABLE_BZIP" -a -z "$ENABLE_GZIP" ]; then
ENABLE_GZIP=-b
fi
# If no version is given, default to today's date
if [ -n "$1" ]; then
VERSION=$1
else
VERSION="`date '+%Y-%m-%d-%H:%M:%S'`"
fi
echo Creating source distribution
if [ -n "$ENABLE_GZIP" ]; then
......@@ -37,7 +48,7 @@ if [ -n "$ENABLE_BZIP" ]; then
ZIPEXT="bz2"
fi
GTAR_OPTIONS="--exclude=CVS --exclude='*.pot.~*~'"
GTAR_OPTIONS="--exclude=.git --exclude='*.pot.~*~'"
if [ -z "$INSTALL_DIR" ]; then
echo " Compressing with $ZIP"
${GTAR:-tar} ${GTAR_OPTIONS} -cf - src | ${ZIP} > cmucl-src-$VERSION.tar.$ZIPEXT
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment