mirror of
https://github.com/wting/autojump
synced 2024-10-27 20:34:07 +00:00
19 lines
372 B
Bash
Executable File
19 lines
372 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ $# -ne 1 ]
|
|
then
|
|
echo "Usage: `basename $0` release"
|
|
echo "where release is of the form v11, v12, ..."
|
|
exit 1
|
|
fi
|
|
version=$1
|
|
|
|
#check for tag existence
|
|
git describe release-$1 2>&1 >/dev/null ||
|
|
{
|
|
echo "Invalid version $1"
|
|
exit 1
|
|
}
|
|
|
|
git archive --format=tar --prefix autojump_${version}/ release-${version} | gzip > autojump_${version}.tar.gz
|