mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-12 19:02:12 +00:00
build: relocatable package: exclude tools/python3
python3 has its own relocatable package, no need to include it in scylla-package.tar.gz. Python has its own relocatable package, so packaging it in scylla-package.ta Closes #7467
This commit is contained in:
@@ -154,7 +154,9 @@ ar.reloc_add('licenses')
|
||||
ar.reloc_add('swagger-ui')
|
||||
ar.reloc_add('api')
|
||||
def exclude_submodules(tarinfo):
|
||||
if tarinfo.name in ('scylla/tools/jmx', 'scylla/tools/java'):
|
||||
if tarinfo.name in ('scylla/tools/jmx',
|
||||
'scylla/tools/java',
|
||||
'scylla/tools/python3'):
|
||||
return None
|
||||
return tarinfo
|
||||
ar.reloc_add('tools', filter=exclude_submodules)
|
||||
|
||||
Reference in New Issue
Block a user