mirror of
https://github.com/redis/redis.git
synced 2026-02-13 07:44:25 -05:00
14 lines
298 B
Bash
Executable file
14 lines
298 B
Bash
Executable file
#!/bin/sh
|
|
if [ $# != "1" ]
|
|
then
|
|
echo "Usage: ./mkrelease.sh <git-ref>"
|
|
exit 1
|
|
fi
|
|
|
|
TAG=$1
|
|
TARNAME="redis-${TAG}.tar"
|
|
echo "Generating /tmp/${TARNAME}"
|
|
git archive $TAG --prefix redis-${TAG}/ > /tmp/$TARNAME || exit 1
|
|
echo "Gizipping the archive"
|
|
rm -f /tmp/$TARNAME.gz
|
|
gzip -9 /tmp/$TARNAME
|