mirror of
https://github.com/fluencelabs/redis
synced 2025-07-31 00:11:56 +00:00
First version of release scripts.
This commit is contained in:
14
utils/releasetools/01_create_tarball.sh
Executable file
14
utils/releasetools/01_create_tarball.sh
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/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
|
Reference in New Issue
Block a user