This is an automated email from the ASF dual-hosted git repository.

hulk pushed a commit to branch unstable
in repository https://gitbox.apache.org/repos/asf/incubator-kvrocks.git


The following commit(s) were added to refs/heads/unstable by this push:
     new f061049  x.py: fix release tarball naming (#732)
f061049 is described below

commit f061049476da136cc787718ed7c49a38bd426f3f
Author: tison <[email protected]>
AuthorDate: Sat Jul 16 00:54:55 2022 +0800

    x.py: fix release tarball naming (#732)
    
    Signed-off-by: tison <[email protected]>
---
 x.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x.py b/x.py
index ce8b0a1..3a86f89 100755
--- a/x.py
+++ b/x.py
@@ -145,7 +145,7 @@ def package_source(args):
     run([git, 'commit', '-a', '-m', f'[source-release] prepare release 
apache-kvrocks-{version}'], stdout=subprocess.PIPE)
     run([git, 'tag', '-a', f'v{version}', '-m', '[source-release] copy for tag 
v{version}'], stdout=subprocess.PIPE)
 
-    tarball = f'apache-kvrocks-{version}.tar.gz'
+    tarball = f'apache-kvrocks-{version}-incubating-src.tar.gz'
     # 2. Create the source tarball
     output = run([git, 'ls-files'], stdout=subprocess.PIPE)
     run(['xargs', 'tar', '-czf', tarball], stdin=output, 
stdout=subprocess.PIPE)

Reply via email to