mirror of
https://github.com/michaelrsweet/mxml.git
synced 2024-11-14 15:55:30 +00:00
19 lines
347 B
Bash
Executable File
19 lines
347 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# makesrcdist - make a source distribution of mxml.
|
|
#
|
|
|
|
if test $# != 1; then
|
|
echo "Usage: ./makesrcdist version"
|
|
exit 1
|
|
fi
|
|
|
|
version=$1
|
|
|
|
echo Creating tag for release...
|
|
git tag -m "Tag $version" v$version
|
|
git push origin v$version
|
|
|
|
echo Creating mxml-$version.tar.gz...
|
|
git archive --format tar HEAD | gzip -v9 >mxml-$version.tar.gz
|