diff options
author | antirez <antirez@gmail.com> | 2014-09-19 19:17:52 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2014-09-19 19:17:52 +0200 |
commit | f3107559bee963f1345956581f90722e7c79be81 (patch) | |
tree | a5bd4c50862bbd2b565f52ffe87ce7c0167524d9 /utils | |
parent | eba1e652f4824d94ec548913100f1649c3f9d73e (diff) | |
download | redis-f3107559bee963f1345956581f90722e7c79be81.tar.gz |
Quick, wrong, fix for create_tarball script.
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/releasetools/01_create_tarball.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/releasetools/01_create_tarball.sh b/utils/releasetools/01_create_tarball.sh index 2316fff96..54bca8c04 100755 --- a/utils/releasetools/01_create_tarball.sh +++ b/utils/releasetools/01_create_tarball.sh @@ -8,6 +8,7 @@ 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 |