summaryrefslogtreecommitdiff
path: root/utils/releasetools/01_create_tarball.sh
blob: 54bca8c042f9b85ebe9b9f8e476f81e318432faa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
if [ $# != "1" ]
then
    echo "Usage: ./mkrelease.sh <git-ref>"
    exit 1
fi

TAG=$1
TARNAME="redis-${TAG}.tar"
echo "Generating /tmp/${TARNAME}"
cd ~/hack/redis
git archive $TAG --prefix redis-${TAG}/ > /tmp/$TARNAME || exit 1
echo "Gizipping the archive"
rm -f /tmp/$TARNAME.gz
gzip -9 /tmp/$TARNAME