mirror of
http://github.com/valkey-io/valkey
synced 2024-11-22 00:52:38 +00:00
a4da212f11
Updated release-tool scripts to valkey, This PR covered only the file names for the tarball but still location needs to be updated accordingly. Signed-off-by: Shivshankar-Reddy <shiva.sheri.github@gmail.com>
15 lines
331 B
Bash
Executable File
15 lines
331 B
Bash
Executable File
#!/bin/sh
|
|
if [ $# != "1" ]
|
|
then
|
|
echo "Usage: ./utils/releasetools/01_create_tarball.sh <version_tag>"
|
|
exit 1
|
|
fi
|
|
|
|
TAG=$1
|
|
TARNAME="valkey-${TAG}.tar"
|
|
echo "Generating /tmp/${TARNAME}"
|
|
git archive $TAG --prefix valkey-${TAG}/ > /tmp/$TARNAME || exit 1
|
|
echo "Gizipping the archive"
|
|
rm -f /tmp/$TARNAME.gz
|
|
gzip -9 /tmp/$TARNAME
|